-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Discover dependencies table version automatically (#1364)
- Loading branch information
1 parent
0c9a2c9
commit e895973
Showing
6 changed files
with
99 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright (c) 2019 Uber Technologies, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dependencystore | ||
|
||
import ( | ||
"github.com/jaegertracing/jaeger/pkg/cassandra" | ||
) | ||
|
||
// GetDependencyVersion attempts to determine the version of the dependencies table. | ||
// TODO: Remove this once we've migrated to V2 permanently. https://github.com/jaegertracing/jaeger/issues/1344 | ||
func GetDependencyVersion(s cassandra.Session) Version { | ||
if err := s.Query("SELECT ts from dependencies_v2 limit 1;").Exec(); err != nil { | ||
return V1 | ||
} | ||
return V2 | ||
} |
46 changes: 46 additions & 0 deletions
46
plugin/storage/cassandra/dependencystore/bootstrap_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright (c) 2019 Uber Technologies, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dependencystore | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/pkg/errors" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/mock" | ||
|
||
"github.com/jaegertracing/jaeger/pkg/cassandra/mocks" | ||
) | ||
|
||
func TestGetDependencyVersionV1(t *testing.T) { | ||
var ( | ||
session = &mocks.Session{} | ||
query = &mocks.Query{} | ||
) | ||
session.On("Query", mock.AnythingOfType("string"), mock.Anything).Return(query) | ||
query.On("Exec").Return(errors.New("error")) | ||
|
||
assert.Equal(t, V1, GetDependencyVersion(session)) | ||
} | ||
|
||
func TestGetDependencyVersionV2(t *testing.T) { | ||
var ( | ||
session = &mocks.Session{} | ||
query = &mocks.Query{} | ||
) | ||
session.On("Query", mock.AnythingOfType("string"), mock.Anything).Return(query) | ||
query.On("Exec").Return(nil) | ||
assert.Equal(t, V2, GetDependencyVersion(session)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters