diff --git a/Dockerfile-clustertests b/Dockerfile-clustertests index 98cd2a2a6..17fbb891e 100644 --- a/Dockerfile-clustertests +++ b/Dockerfile-clustertests @@ -5,7 +5,7 @@ FROM golang:1.19 LABEL maintainer "dev@pilosa.com" -COPY . /go/src/github.com/molecula/featurebase/ +COPY . /go/src/github.com/featurebasedb/featurebase/ # download pumba for fault injection @@ -22,9 +22,9 @@ RUN chmod +x /usr/local/bin/docker-compose # generate an instrumented binary to allow for calculating code coverage for clustertests # the entrypoint for the binary is TestRunMain, which is wrapper for main -RUN cd /go/src/github.com/molecula/featurebase/cmd/featurebase && \ +RUN cd /go/src/github.com/featurebasedb/featurebase/cmd/featurebase && \ go test -covermode=atomic -coverpkg=../../... -c -tags testrunmain -o featurebase && \ - cp /go/src/github.com/molecula/featurebase/cmd/featurebase/featurebase /featurebase + cp /go/src/github.com/featurebasedb/featurebase/cmd/featurebase/featurebase /featurebase COPY NOTICE /NOTICE diff --git a/Dockerfile-clustertests-client b/Dockerfile-clustertests-client index 85e10a5f5..1f3df34e9 100644 --- a/Dockerfile-clustertests-client +++ b/Dockerfile-clustertests-client @@ -5,7 +5,7 @@ FROM golang:1.19 LABEL maintainer "dev@pilosa.com" -COPY . /go/src/github.com/molecula/featurebase/ +COPY . /go/src/github.com/featurebasedb/featurebase/ # download pumba for fault injection ADD https://github.com/alexei-led/pumba/releases/download/0.6.0/pumba_linux_amd64 /pumba @@ -19,14 +19,14 @@ RUN apt install -y docker.io ADD https://github.com/docker/compose/releases/latest/download/docker-compose-Linux-x86_64 /usr/local/bin/docker-compose RUN chmod +x /usr/local/bin/docker-compose -RUN cd /go/src/github.com/molecula/featurebase/cmd/featurebase && \ +RUN cd /go/src/github.com/featurebasedb/featurebase/cmd/featurebase && \ go test -covermode=atomic -coverpkg=../../... -c -tags testrunmain -o featurebase && \ - cp /go/src/github.com/molecula/featurebase/cmd/featurebase/featurebase /featurebase + cp /go/src/github.com/featurebasedb/featurebase/cmd/featurebase/featurebase /featurebase COPY NOTICE /NOTICE -COPY ./internal/clustertests /go/src/github.com/molecula/featurebase/internal/clustertests +COPY ./internal/clustertests /go/src/github.com/featurebasedb/featurebase/internal/clustertests EXPOSE 10101 VOLUME /data diff --git a/Makefile b/Makefile index 8f474f1e7..f9abfdf85 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ BRANCH_ID := $(BRANCH)-$(GOOS)-$(GOARCH) BUILD_TIME := $(shell date -u +%FT%T%z) SHARD_WIDTH = 20 COMMIT := $(shell git describe --exact-match >/dev/null 2>&1 || git rev-parse --short HEAD) -LDFLAGS="-X github.com/molecula/featurebase/v3.Version=$(VERSION) -X github.com/molecula/featurebase/v3.BuildTime=$(BUILD_TIME) -X github.com/molecula/featurebase/v3.Variant=$(VARIANT) -X github.com/molecula/featurebase/v3.Commit=$(COMMIT) -X github.com/molecula/featurebase/v3.TrialDeadline=$(TRIAL_DEADLINE)" +LDFLAGS="-X github.com/featurebasedb/featurebase/v3.Version=$(VERSION) -X github.com/featurebasedb/featurebase/v3.BuildTime=$(BUILD_TIME) -X github.com/featurebasedb/featurebase/v3.Variant=$(VARIANT) -X github.com/featurebasedb/featurebase/v3.Commit=$(COMMIT) -X github.com/featurebasedb/featurebase/v3.TrialDeadline=$(TRIAL_DEADLINE)" GO_VERSION=1.19 DOCKER_BUILD= # set to 1 to use `docker-build` instead of `build` when creating a release BUILD_TAGS += shardwidth$(SHARD_WIDTH) @@ -68,7 +68,7 @@ testv-race: testvsub-race # testvsub: @set -e; for pkg in $(GOPACKAGES); do \ - if [ $${pkg:0:38} == "github.com/molecula/featurebase/v3/idk" ]; then \ + if [ $${pkg:0:38} == "github.com/featurebasedb/featurebase/v3/idk" ]; then \ echo; echo "___ skipping subpkg $$pkg"; \ continue; \ fi; \ @@ -161,7 +161,7 @@ clustertests: vendor $(DOCKER_COMPOSE) -f internal/clustertests/docker-compose.yml down # Run the cluster tests with authentication enabled -AUTH_ARGS="-c /go/src/github.com/molecula/featurebase/internal/clustertests/testdata/featurebase.conf" +AUTH_ARGS="-c /go/src/github.com/featurebasedb/featurebase/internal/clustertests/testdata/featurebase.conf" authclustertests: vendor CLUSTERTESTS_FB_ARGS=$(AUTH_ARGS) $(DOCKER_COMPOSE) -f internal/clustertests/docker-compose.yml down CLUSTERTESTS_FB_ARGS=$(AUTH_ARGS) $(DOCKER_COMPOSE) -f internal/clustertests/docker-compose.yml build @@ -187,11 +187,11 @@ build-lattice: # `go generate` protocol buffers generate-protoc: require-protoc require-protoc-gen-gofast - $(GO) generate github.com/molecula/featurebase/v3/pb + $(GO) generate github.com/featurebasedb/featurebase/v3/pb # `go generate` statik assets (lattice UI) generate-statik: build-lattice require-statik - $(GO) generate github.com/molecula/featurebase/v3/statik + $(GO) generate github.com/featurebasedb/featurebase/v3/statik # `go generate` statik assets (lattice UI) in Docker generate-statik-docker: build-lattice @@ -199,7 +199,7 @@ generate-statik-docker: build-lattice # `go generate` stringers generate-stringer: - $(GO) generate github.com/molecula/featurebase/v3 + $(GO) generate github.com/featurebasedb/featurebase/v3 generate-pql: require-peg cd pql && peg -inline pql.peg && cd .. @@ -210,7 +210,7 @@ generate-proto-grpc: require-protoc require-protoc-gen-go # TODO: Modify above commands and remove the below mv if possible. # See https://go-review.googlesource.com/c/protobuf/+/219298/ for info on --go-opt # I couldn't get it to work during development - Cody - cp -r proto/github.com/molecula/featurebase/v3/proto/ proto/ + cp -r proto/github.com/featurebasedb/featurebase/v3/proto/ proto/ rm -rf proto/github.com # `go generate` all needed packages diff --git a/api.go b/api.go index 986340986..b0101655a 100644 --- a/api.go +++ b/api.go @@ -23,15 +23,15 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/rbf" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/rbf" - //"github.com/molecula/featurebase/v3/pg" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/tracing" + //"github.com/featurebasedb/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/tracing" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/api/client/grpc.go b/api/client/grpc.go index 636b60d40..60b292b7c 100644 --- a/api/client/grpc.go +++ b/api/client/grpc.go @@ -7,8 +7,8 @@ import ( "crypto/tls" "sync" - "github.com/molecula/featurebase/v3/logger" - pb "github.com/molecula/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/logger" + pb "github.com/featurebasedb/featurebase/v3/proto" "github.com/pkg/errors" "google.golang.org/grpc" "google.golang.org/grpc/connectivity" diff --git a/api_test.go b/api_test.go index a80cd5661..1c5ae6f24 100644 --- a/api_test.go +++ b/api_test.go @@ -23,14 +23,14 @@ import ( "time" "github.com/golang-jwt/jwt" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/shardwidth" - "github.com/molecula/featurebase/v3/test" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/test" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck "golang.org/x/sync/errgroup" ) diff --git a/audit.go b/audit.go index bd6cab0f7..f91823fa5 100644 --- a/audit.go +++ b/audit.go @@ -3,7 +3,7 @@ package pilosa import ( - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) var NewAuditor func() testhook.Auditor = NewNopAuditor diff --git a/audit_internal_test.go b/audit_internal_test.go index b2dc240d5..109f2d6cc 100644 --- a/audit_internal_test.go +++ b/audit_internal_test.go @@ -6,7 +6,7 @@ import ( "fmt" "reflect" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) // These audit hooks are desireable during testing, but not in diff --git a/audit_test.go b/audit_test.go index 70e828f3b..5aabb1b14 100644 --- a/audit_test.go +++ b/audit_test.go @@ -7,8 +7,8 @@ import ( "os" "reflect" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/testhook" ) // AuditLeaksOn is a global switch to turn on resource diff --git a/authn/authenticate.go b/authn/authenticate.go index da7f2bb85..6bf2415d3 100644 --- a/authn/authenticate.go +++ b/authn/authenticate.go @@ -20,7 +20,7 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/metadata" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" "golang.org/x/oauth2" ) diff --git a/authn/authenticate_internal_test.go b/authn/authenticate_internal_test.go index 664754891..5d10bcdcd 100644 --- a/authn/authenticate_internal_test.go +++ b/authn/authenticate_internal_test.go @@ -17,7 +17,7 @@ import ( "time" "github.com/golang-jwt/jwt" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "google.golang.org/grpc" "google.golang.org/grpc/metadata" ) diff --git a/authz/authorization.go b/authz/authorization.go index e8deda26f..8558cc8ca 100644 --- a/authz/authorization.go +++ b/authz/authorization.go @@ -8,7 +8,7 @@ import ( "io" "io/ioutil" - "github.com/molecula/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/authn" "gopkg.in/yaml.v2" ) diff --git a/authz/authorization_test.go b/authz/authorization_test.go index 203940ef8..1f1a98c1d 100644 --- a/authz/authorization_test.go +++ b/authz/authorization_test.go @@ -9,8 +9,8 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/authz" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/authz" ) func TestAuth_ReadPermissionsFile(t *testing.T) { diff --git a/boltdb/translate.go b/boltdb/translate.go index 775151240..397027dab 100644 --- a/boltdb/translate.go +++ b/boltdb/translate.go @@ -13,8 +13,8 @@ import ( "sync" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/roaring" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" bolt "go.etcd.io/bbolt" diff --git a/boltdb/translate_internal_test.go b/boltdb/translate_internal_test.go index 29d5c6fbb..9faa3a7d7 100644 --- a/boltdb/translate_internal_test.go +++ b/boltdb/translate_internal_test.go @@ -4,7 +4,7 @@ import ( "path/filepath" "testing" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" bolt "go.etcd.io/bbolt" ) diff --git a/boltdb/translate_test.go b/boltdb/translate_test.go index 6093c04e5..a31d874cc 100644 --- a/boltdb/translate_test.go +++ b/boltdb/translate_test.go @@ -11,11 +11,11 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/testhook" ) //var vv = pilosa.VV diff --git a/broadcast.go b/broadcast.go index 5836efb62..2aaafd1cb 100644 --- a/broadcast.go +++ b/broadcast.go @@ -5,7 +5,7 @@ package pilosa import ( "fmt" - "github.com/molecula/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/disco" "github.com/pkg/errors" ) diff --git a/bsi.go b/bsi.go index 2f7b427ef..3fee24de2 100644 --- a/bsi.go +++ b/bsi.go @@ -5,7 +5,7 @@ package pilosa import ( "math/bits" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" ) // bsiData contains BSI-structured data. diff --git a/cache.go b/cache.go index 907a551d7..90cf42d3e 100644 --- a/cache.go +++ b/cache.go @@ -11,9 +11,9 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/lru" - pb "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/lru" + pb "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/stats" "github.com/pkg/errors" ) diff --git a/cache_test.go b/cache_test.go index 29b150061..fb338fec8 100644 --- a/cache_test.go +++ b/cache_test.go @@ -6,7 +6,7 @@ import ( "reflect" "testing" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" ) // Ensure cache stays constrained to its configured size. diff --git a/catcher.go b/catcher.go index 19caf53de..40be70121 100644 --- a/catcher.go +++ b/catcher.go @@ -3,9 +3,9 @@ package pilosa import ( - "github.com/molecula/featurebase/v3/roaring" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/roaring" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/vprint" ) // catcher is useful to report error locations with a diff --git a/client/batch.go b/client/batch.go index b75301fbb..265c52733 100644 --- a/client/batch.go +++ b/client/batch.go @@ -9,10 +9,10 @@ import ( "sync" "time" - featurebase "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/client/egpool" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/roaring" + featurebase "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/client/egpool" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" ) diff --git a/client/batch_test.go b/client/batch_test.go index b7a968848..2aadb4e4e 100644 --- a/client/batch_test.go +++ b/client/batch_test.go @@ -12,8 +12,8 @@ import ( "testing" "time" - featurebase "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/test" + featurebase "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/test" "github.com/pkg/errors" ) diff --git a/client/client.go b/client/client.go index 47a115528..40fb623c6 100644 --- a/client/client.go +++ b/client/client.go @@ -21,14 +21,14 @@ import ( "time" "github.com/golang/protobuf/proto" //nolint:staticcheck - pilosa "github.com/molecula/featurebase/v3" - fbproto "github.com/molecula/featurebase/v3/encoding/proto" // TODO use this everywhere and get rid of proto import - "github.com/molecula/featurebase/v3/logger" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/pb" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/stats" + pilosa "github.com/featurebasedb/featurebase/v3" + fbproto "github.com/featurebasedb/featurebase/v3/encoding/proto" // TODO use this everywhere and get rid of proto import + "github.com/featurebasedb/featurebase/v3/logger" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/pb" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/stats" "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "golang.org/x/sync/errgroup" diff --git a/client/client_it_test.go b/client/client_it_test.go index aea626caa..9eaf1afbb 100644 --- a/client/client_it_test.go +++ b/client/client_it_test.go @@ -9,12 +9,12 @@ import ( "testing" "time" - featurebase "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/shardwidth" - "github.com/molecula/featurebase/v3/test" + featurebase "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/test" "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" ) @@ -227,7 +227,7 @@ func TestClientAgainstCluster(t *testing.T) { _, err = cli.Query(qry) require.NoErrorf(t, err, "BatchQuery") - // XXX: The following is required to make this test pass. See: https://github.com/molecula/featurebase/issues/625 + // XXX: The following is required to make this test pass. See: https://github.com/featurebasedb/featurebase/issues/625 _, _, err = cli.HTTPRequest("POST", "/recalculate-caches", nil, nil) require.NoErrorf(t, err, "POST /recalculate-caches") diff --git a/client/client_test.go b/client/client_test.go index ecce17031..0095ca9df 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -11,7 +11,7 @@ import ( "reflect" "testing" - pnet "github.com/molecula/featurebase/v3/net" + pnet "github.com/featurebasedb/featurebase/v3/net" ) func TestQueryWithError(t *testing.T) { diff --git a/client/cluster.go b/client/cluster.go index ed7b81618..c7dbe0e4b 100644 --- a/client/cluster.go +++ b/client/cluster.go @@ -8,7 +8,7 @@ package client import ( "sync" - pnet "github.com/molecula/featurebase/v3/net" + pnet "github.com/featurebasedb/featurebase/v3/net" ) // Cluster contains hosts in a Pilosa cluster. diff --git a/client/cluster_test.go b/client/cluster_test.go index 67b245fdc..7ed355d23 100644 --- a/client/cluster_test.go +++ b/client/cluster_test.go @@ -8,7 +8,7 @@ package client import ( "testing" - pnet "github.com/molecula/featurebase/v3/net" + pnet "github.com/featurebasedb/featurebase/v3/net" ) func TestNewClusterWithHost(t *testing.T) { diff --git a/client/csv/csv.go b/client/csv/csv.go index bb32dd75a..ef691beed 100644 --- a/client/csv/csv.go +++ b/client/csv/csv.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/molecula/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/client" ) // Format is the format of the data in the CSV file. diff --git a/client/csv/csv_it_test.go b/client/csv/csv_it_test.go index d0964dbbd..b019c8888 100644 --- a/client/csv/csv_it_test.go +++ b/client/csv/csv_it_test.go @@ -11,8 +11,8 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/client/csv" + "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/client/csv" ) func TestCSVIterate(t *testing.T) { diff --git a/client/csv/csv_test.go b/client/csv/csv_test.go index 1726b14b2..04872c7f4 100644 --- a/client/csv/csv_test.go +++ b/client/csv/csv_test.go @@ -9,9 +9,9 @@ import ( "strings" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/client/csv" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/client/csv" ) func TestCSVColumnIterator(t *testing.T) { diff --git a/client/doc.go b/client/doc.go index 0f5cc1f70..778205157 100644 --- a/client/doc.go +++ b/client/doc.go @@ -12,7 +12,7 @@ Usage: import ( "fmt" - "github.com/molecula/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/client" ) // Create a Client instance diff --git a/client/egpool/egpool_test.go b/client/egpool/egpool_test.go index c31bd2f5a..2cdd6eacb 100644 --- a/client/egpool/egpool_test.go +++ b/client/egpool/egpool_test.go @@ -6,7 +6,7 @@ import ( "errors" "testing" - "github.com/molecula/featurebase/v3/client/egpool" + "github.com/featurebasedb/featurebase/v3/client/egpool" ) func TestEGPool(t *testing.T) { diff --git a/client/ingest_api_batch.go b/client/ingest_api_batch.go index a1ae7a1c5..73b4c2a66 100644 --- a/client/ingest_api_batch.go +++ b/client/ingest_api_batch.go @@ -3,7 +3,7 @@ package client import ( "time" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/client/ingest_api_batch_test.go b/client/ingest_api_batch_test.go index bc6858c12..7c0770603 100644 --- a/client/ingest_api_batch_test.go +++ b/client/ingest_api_batch_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/test" ) func TestIngestAPIBatchAdd(t *testing.T) { diff --git a/client/orm.go b/client/orm.go index 54e230334..5b07b5933 100644 --- a/client/orm.go +++ b/client/orm.go @@ -14,7 +14,7 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/pql" "github.com/pkg/errors" ) diff --git a/client/orm_test.go b/client/orm_test.go index 150cb231b..93543233c 100644 --- a/client/orm_test.go +++ b/client/orm_test.go @@ -14,8 +14,8 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/pql" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/pql" "github.com/pkg/errors" ) diff --git a/client/record_test.go b/client/record_test.go index 2d75a464e..8674bf9d7 100644 --- a/client/record_test.go +++ b/client/record_test.go @@ -8,7 +8,7 @@ package client_test import ( "testing" - "github.com/molecula/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/client" ) func TestColumnShard(t *testing.T) { diff --git a/client/response.go b/client/response.go index b51f29940..cd353c1c1 100644 --- a/client/response.go +++ b/client/response.go @@ -9,7 +9,7 @@ import ( "encoding/json" "fmt" - "github.com/molecula/featurebase/v3/pb" + "github.com/featurebasedb/featurebase/v3/pb" ) // QueryResponse types. diff --git a/client/response_test.go b/client/response_test.go index e80430d2b..321ae3779 100644 --- a/client/response_test.go +++ b/client/response_test.go @@ -12,7 +12,7 @@ import ( "reflect" "testing" - "github.com/molecula/featurebase/v3/pb" + "github.com/featurebasedb/featurebase/v3/pb" ) func TestNewRowResultFromInternal(t *testing.T) { diff --git a/client/shardnodes.go b/client/shardnodes.go index 2ffc304b4..a2f3d0819 100644 --- a/client/shardnodes.go +++ b/client/shardnodes.go @@ -8,7 +8,7 @@ package client import ( "sync" - pnet "github.com/molecula/featurebase/v3/net" + pnet "github.com/featurebasedb/featurebase/v3/net" ) type shardNodes struct { diff --git a/cluster.go b/cluster.go index 06f4273b7..eecd8385d 100644 --- a/cluster.go +++ b/cluster.go @@ -8,10 +8,10 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/cluster_internal_test.go b/cluster_internal_test.go index e66924d88..bd52fc1d9 100644 --- a/cluster_internal_test.go +++ b/cluster_internal_test.go @@ -11,11 +11,11 @@ import ( "time" "github.com/davecgh/go-spew/spew" - "github.com/molecula/featurebase/v3/disco" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/testhook" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + "github.com/featurebasedb/featurebase/v3/disco" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/testhook" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) // newHolderWithTempPath returns a new instance of Holder. diff --git a/cmd.go b/cmd.go index 998b3908e..83a37722c 100644 --- a/cmd.go +++ b/cmd.go @@ -5,7 +5,7 @@ package pilosa import ( "io" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) // CmdIO holds standard unix inputs and outputs. diff --git a/cmd/auth_token.go b/cmd/auth_token.go index 3545fe6de..cfc131de6 100644 --- a/cmd/auth_token.go +++ b/cmd/auth_token.go @@ -6,7 +6,7 @@ import ( "context" "io" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" "github.com/spf13/cobra" ) diff --git a/cmd/backup.go b/cmd/backup.go index ef5d03248..6fa9b3d69 100644 --- a/cmd/backup.go +++ b/cmd/backup.go @@ -6,7 +6,7 @@ import ( "context" "io" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" "github.com/spf13/cobra" ) diff --git a/cmd/badloader/badloader.go b/cmd/badloader/badloader.go index 2daabc362..35fbadcc5 100644 --- a/cmd/badloader/badloader.go +++ b/cmd/badloader/badloader.go @@ -13,10 +13,10 @@ import ( "io/ioutil" gohttp "net/http" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/encoding/proto" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/vprint" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/vprint" "os" "strconv" diff --git a/cmd/chksum.go b/cmd/chksum.go index fb7252b0e..ce77a0862 100644 --- a/cmd/chksum.go +++ b/cmd/chksum.go @@ -6,7 +6,7 @@ import ( "context" "io" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" "github.com/spf13/cobra" ) diff --git a/cmd/config.go b/cmd/config.go index a6f60ce1d..0f4cd8e79 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -8,8 +8,8 @@ import ( "github.com/spf13/cobra" - "github.com/molecula/featurebase/v3/ctl" - "github.com/molecula/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/server" ) var conf *ctl.ConfigCommand diff --git a/cmd/export.go b/cmd/export.go index 3d3684644..bbbbf215a 100644 --- a/cmd/export.go +++ b/cmd/export.go @@ -8,7 +8,7 @@ import ( "github.com/spf13/cobra" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" ) var Exporter *ctl.ExportCommand diff --git a/cmd/export_test.go b/cmd/export_test.go index 81da51066..22453242d 100644 --- a/cmd/export_test.go +++ b/cmd/export_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/cmd" + "github.com/featurebasedb/featurebase/v3/cmd" ) func TestExportHelp(t *testing.T) { diff --git a/cmd/featurebase-parse-sql/main.go b/cmd/featurebase-parse-sql/main.go index a275ab75d..32a7f31e0 100644 --- a/cmd/featurebase-parse-sql/main.go +++ b/cmd/featurebase-parse-sql/main.go @@ -10,7 +10,7 @@ import ( "os" "strings" - "github.com/molecula/featurebase/v3/sql2" + "github.com/featurebasedb/featurebase/v3/sql2" ) func main() { diff --git a/cmd/featurebase/main.go b/cmd/featurebase/main.go index c322b116f..46a2d79f9 100644 --- a/cmd/featurebase/main.go +++ b/cmd/featurebase/main.go @@ -9,8 +9,8 @@ import ( "fmt" "os" - "github.com/molecula/featurebase/v3/cmd" - "github.com/molecula/featurebase/v3/monitor" + "github.com/featurebasedb/featurebase/v3/cmd" + "github.com/featurebasedb/featurebase/v3/monitor" ) func main() { diff --git a/cmd/generate_config.go b/cmd/generate_config.go index 37eca7cf3..851a189b8 100644 --- a/cmd/generate_config.go +++ b/cmd/generate_config.go @@ -8,7 +8,7 @@ import ( "github.com/spf13/cobra" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" ) var generateConf *ctl.GenerateConfigCommand diff --git a/cmd/import.go b/cmd/import.go index fc63ddd91..725c3a3b8 100644 --- a/cmd/import.go +++ b/cmd/import.go @@ -8,9 +8,9 @@ import ( "io" "strconv" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/ctl" - "github.com/molecula/featurebase/v3/pql" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/pql" "github.com/spf13/cobra" ) diff --git a/cmd/import_test.go b/cmd/import_test.go index 8520dbc66..b96fcab70 100644 --- a/cmd/import_test.go +++ b/cmd/import_test.go @@ -6,10 +6,10 @@ import ( "strings" "testing" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" - "github.com/molecula/featurebase/v3/cmd" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/cmd" + "github.com/featurebasedb/featurebase/v3/pql" ) func TestImportHelp(t *testing.T) { diff --git a/cmd/keygen.go b/cmd/keygen.go index e4e8d723e..85f5152fa 100644 --- a/cmd/keygen.go +++ b/cmd/keygen.go @@ -6,7 +6,7 @@ import ( "context" "io" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" "github.com/spf13/cobra" ) diff --git a/cmd/pilosa-bench/main.go b/cmd/pilosa-bench/main.go index 0194b4d3f..6529c8fea 100644 --- a/cmd/pilosa-bench/main.go +++ b/cmd/pilosa-bench/main.go @@ -17,8 +17,8 @@ import ( "strings" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/encoding/proto" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/encoding/proto" "golang.org/x/sync/errgroup" ) diff --git a/cmd/rbf.go b/cmd/rbf.go index bd9a9a105..7d755dc50 100644 --- a/cmd/rbf.go +++ b/cmd/rbf.go @@ -9,7 +9,7 @@ import ( "io" "strconv" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" "github.com/spf13/cobra" ) diff --git a/cmd/restore.go b/cmd/restore.go index ad9f7c0ea..55fcff5fe 100644 --- a/cmd/restore.go +++ b/cmd/restore.go @@ -6,7 +6,7 @@ import ( "context" "io" - "github.com/molecula/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/ctl" "github.com/spf13/cobra" ) diff --git a/cmd/roaring-migrate/main.go b/cmd/roaring-migrate/main.go index 8bd7cbce8..ed6eb16fd 100644 --- a/cmd/roaring-migrate/main.go +++ b/cmd/roaring-migrate/main.go @@ -14,13 +14,13 @@ import ( "strings" "syscall" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/rbf" - "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/roaring" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/vprint" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/rbf" + "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/roaring" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/spf13/cobra" ) diff --git a/cmd/root.go b/cmd/root.go index 08ea8ee06..b40f7562a 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -7,7 +7,7 @@ import ( "io" "strings" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" "github.com/spf13/cobra" "github.com/spf13/pflag" "github.com/spf13/viper" diff --git a/cmd/root_test.go b/cmd/root_test.go index 4f89d1d0a..cb675e74e 100644 --- a/cmd/root_test.go +++ b/cmd/root_test.go @@ -13,8 +13,8 @@ import ( "time" - "github.com/molecula/featurebase/v3/cmd" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/cmd" + "github.com/featurebasedb/featurebase/v3/testhook" "github.com/spf13/cobra" ) diff --git a/cmd/server.go b/cmd/server.go index 2dd273db3..ea7447def 100644 --- a/cmd/server.go +++ b/cmd/server.go @@ -5,10 +5,10 @@ package cmd import ( "io" - "github.com/molecula/featurebase/v3/ctl" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/tracing" - "github.com/molecula/featurebase/v3/tracing/opentracing" + "github.com/featurebasedb/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/tracing/opentracing" "github.com/pkg/errors" "github.com/spf13/cobra" jaegercfg "github.com/uber/jaeger-client-go/config" diff --git a/cmd/server_test.go b/cmd/server_test.go index cfdba2523..07f2ef0e3 100644 --- a/cmd/server_test.go +++ b/cmd/server_test.go @@ -10,10 +10,10 @@ import ( "time" "github.com/felixge/fgprof" - "github.com/molecula/featurebase/v3/cmd" - _ "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/toml" + "github.com/featurebasedb/featurebase/v3/cmd" + _ "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/toml" "github.com/pkg/errors" ) diff --git a/cmd/slurp/slurp.go b/cmd/slurp/slurp.go index 72d2985ea..6a338645c 100644 --- a/cmd/slurp/slurp.go +++ b/cmd/slurp/slurp.go @@ -18,10 +18,10 @@ import ( "strings" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/encoding/proto" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/vprint" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/vprint" ) // slurp: slurp is a load-tester for importing bulk data. diff --git a/ctl/auth_token.go b/ctl/auth_token.go index ca8ce0b99..fb644d442 100644 --- a/ctl/auth_token.go +++ b/ctl/auth_token.go @@ -13,8 +13,8 @@ import ( "strings" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/server" "golang.org/x/oauth2" ) diff --git a/ctl/backup.go b/ctl/backup.go index 41d159707..22876892b 100644 --- a/ctl/backup.go +++ b/ctl/backup.go @@ -13,11 +13,11 @@ import ( "path/filepath" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/server" "github.com/pkg/errors" "github.com/ricochet2200/go-disk-usage/du" "golang.org/x/sync/errgroup" diff --git a/ctl/chksum.go b/ctl/chksum.go index 7fba63e5b..b86143eb3 100644 --- a/ctl/chksum.go +++ b/ctl/chksum.go @@ -9,8 +9,8 @@ import ( "io" "github.com/cespare/xxhash" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/server" ) // ChkSumCommand represents a command for backing up a Pilosa node. diff --git a/ctl/common.go b/ctl/common.go index f0a058960..c659ec14d 100644 --- a/ctl/common.go +++ b/ctl/common.go @@ -5,10 +5,10 @@ package ctl import ( "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/server" "github.com/pkg/errors" "github.com/spf13/pflag" ) diff --git a/ctl/config.go b/ctl/config.go index 66292211a..f79359324 100644 --- a/ctl/config.go +++ b/ctl/config.go @@ -7,8 +7,8 @@ import ( "fmt" "io" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/server" toml "github.com/pelletier/go-toml" ) diff --git a/ctl/config_test.go b/ctl/config_test.go index cd3c8b211..c4a2b953d 100644 --- a/ctl/config_test.go +++ b/ctl/config_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/server" ) func TestConfigCommand_Run(t *testing.T) { diff --git a/ctl/export.go b/ctl/export.go index 24f3a55b2..9a448db78 100644 --- a/ctl/export.go +++ b/ctl/export.go @@ -7,8 +7,8 @@ import ( "io" "os" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/server" "github.com/pkg/errors" ) diff --git a/ctl/export_test.go b/ctl/export_test.go index 722bddd0a..79f7e9fa7 100644 --- a/ctl/export_test.go +++ b/ctl/export_test.go @@ -9,8 +9,8 @@ import ( "strings" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/test" ) func TestExportCommand_Validation(t *testing.T) { diff --git a/ctl/generate_config.go b/ctl/generate_config.go index 1cd0accf0..12a663dc4 100644 --- a/ctl/generate_config.go +++ b/ctl/generate_config.go @@ -7,8 +7,8 @@ import ( "fmt" "io" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/server" "github.com/pelletier/go-toml" "github.com/pkg/errors" ) diff --git a/ctl/import.go b/ctl/import.go index dbfbb20ec..1bf4c9dce 100644 --- a/ctl/import.go +++ b/ctl/import.go @@ -12,10 +12,10 @@ import ( "strconv" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/server" "github.com/pkg/errors" ) diff --git a/ctl/import_test.go b/ctl/import_test.go index 26d4722fa..dae069293 100644 --- a/ctl/import_test.go +++ b/ctl/import_test.go @@ -19,12 +19,12 @@ import ( "time" "github.com/golang-jwt/jwt" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/testhook" ) func TestImportCommand_Validation(t *testing.T) { diff --git a/ctl/keygen.go b/ctl/keygen.go index dcef1f4dd..27d3b7480 100644 --- a/ctl/keygen.go +++ b/ctl/keygen.go @@ -8,7 +8,7 @@ import ( "io" "github.com/gorilla/securecookie" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" ) // Keygen represents a command for generating a cryptographic key. diff --git a/ctl/main_test.go b/ctl/main_test.go index acdca5a2e..027c0d25a 100644 --- a/ctl/main_test.go +++ b/ctl/main_test.go @@ -10,7 +10,7 @@ import ( _ "net/http/pprof" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) func TestMain(m *testing.M) { diff --git a/ctl/rbf_check.go b/ctl/rbf_check.go index cce17b965..ee7887722 100644 --- a/ctl/rbf_check.go +++ b/ctl/rbf_check.go @@ -7,8 +7,8 @@ import ( "fmt" "io" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/rbf" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/rbf" ) // RBFCheckCommand represents a command for running a consistency check on RBF. diff --git a/ctl/rbf_dump.go b/ctl/rbf_dump.go index fec13765a..2dadb0811 100644 --- a/ctl/rbf_dump.go +++ b/ctl/rbf_dump.go @@ -9,8 +9,8 @@ import ( "io" "strings" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/rbf" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/rbf" ) // RBFDumpCommand represents a command for dumping raw data for an RBF page. diff --git a/ctl/rbf_page.go b/ctl/rbf_page.go index 3167f73dc..c9770783a 100644 --- a/ctl/rbf_page.go +++ b/ctl/rbf_page.go @@ -7,8 +7,8 @@ import ( "fmt" "io" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/rbf" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/rbf" ) // RBFPageCommand represents a command for printing data for a single RBF page. diff --git a/ctl/rbf_pages.go b/ctl/rbf_pages.go index 9e00767aa..7f87c2403 100644 --- a/ctl/rbf_pages.go +++ b/ctl/rbf_pages.go @@ -7,9 +7,9 @@ import ( "fmt" "io" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/rbf" - "github.com/molecula/featurebase/v3/txkey" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/rbf" + "github.com/featurebasedb/featurebase/v3/txkey" ) // RBFPagesCommand represents a command for printing a list of RBF page metadata. diff --git a/ctl/restore.go b/ctl/restore.go index 4d62e5572..5af812730 100644 --- a/ctl/restore.go +++ b/ctl/restore.go @@ -18,11 +18,11 @@ import ( "github.com/hashicorp/go-retryablehttp" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/server" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/server" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/ctl/server.go b/ctl/server.go index b64bf7506..39c4922cf 100644 --- a/ctl/server.go +++ b/ctl/server.go @@ -5,8 +5,8 @@ package ctl import ( "time" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/storage" "github.com/spf13/cobra" ) diff --git a/ctl/server_test.go b/ctl/server_test.go index 1273a9622..5531da175 100644 --- a/ctl/server_test.go +++ b/ctl/server_test.go @@ -6,7 +6,7 @@ import ( "bytes" "testing" - "github.com/molecula/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/server" "github.com/spf13/cobra" ) diff --git a/ctl/util.go b/ctl/util.go index 4ee0762b0..a85d4cb60 100644 --- a/ctl/util.go +++ b/ctl/util.go @@ -9,7 +9,7 @@ import ( "time" "github.com/felixge/fgprof" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/dbshard.go b/dbshard.go index 3aad26813..c1d10b070 100644 --- a/dbshard.go +++ b/dbshard.go @@ -11,12 +11,12 @@ import ( "strings" "sync" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/storage" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/storage" "github.com/pkg/errors" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/vprint" ) var _ = sort.Sort diff --git a/dbshard_internal_test.go b/dbshard_internal_test.go index 1ff795f7d..dcb9c912e 100644 --- a/dbshard_internal_test.go +++ b/dbshard_internal_test.go @@ -8,11 +8,11 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/rbf" - "github.com/molecula/featurebase/v3/shardwidth" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/testhook" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + "github.com/featurebasedb/featurebase/v3/rbf" + "github.com/featurebasedb/featurebase/v3/shardwidth" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/testhook" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) // Shard per db evaluation diff --git a/dbshard_test.go b/dbshard_test.go index 3f8feef58..8ee5fa7a8 100644 --- a/dbshard_test.go +++ b/dbshard_test.go @@ -8,11 +8,11 @@ import ( "reflect" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) func TestAPI_SimplerOneNode_ImportColumnKey(t *testing.T) { diff --git a/delete_test.go b/delete_test.go index 61d0325f2..df6249ca9 100644 --- a/delete_test.go +++ b/delete_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/test" "github.com/stretchr/testify/require" ) diff --git a/diagnostics.go b/diagnostics.go index e35490b48..1186c47ea 100644 --- a/diagnostics.go +++ b/diagnostics.go @@ -12,7 +12,7 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) @@ -125,11 +125,11 @@ func (d *diagnosticsCollector) compareVersion(value string) error { localVersion := versionSegments(d.version) if localVersion[0] < currentVersion[0] { //Major - return fmt.Errorf("you are running Pilosa %s, a newer version (%s) is available: https://github.com/molecula/featurebase/releases", d.version, value) + return fmt.Errorf("you are running Pilosa %s, a newer version (%s) is available: https://github.com/featurebasedb/featurebase/releases", d.version, value) } else if localVersion[1] < currentVersion[1] && localVersion[0] == currentVersion[0] { // Minor - return fmt.Errorf("you are running Pilosa %s, the latest minor release is %s: https://github.com/molecula/featurebase/releases", d.version, value) + return fmt.Errorf("you are running Pilosa %s, the latest minor release is %s: https://github.com/featurebasedb/featurebase/releases", d.version, value) } else if localVersion[2] < currentVersion[2] && localVersion[0] == currentVersion[0] && localVersion[1] == currentVersion[1] { // Patch - return fmt.Errorf("there is a new patch release of Pilosa available: %s: https://github.com/molecula/featurebase/releases", value) + return fmt.Errorf("there is a new patch release of Pilosa available: %s: https://github.com/featurebasedb/featurebase/releases", value) } return nil diff --git a/diagnostics_internal_test.go b/diagnostics_internal_test.go index b916f56ae..8cf9f336e 100644 --- a/diagnostics_internal_test.go +++ b/diagnostics_internal_test.go @@ -11,7 +11,7 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) func TestDiagnosticsClient(t *testing.T) { diff --git a/disco/node.go b/disco/node.go index d48eaebbc..646955d4a 100644 --- a/disco/node.go +++ b/disco/node.go @@ -5,7 +5,7 @@ package disco import ( "fmt" - "github.com/molecula/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/net" ) // Node represents a node in the cluster. diff --git a/disco/snapshot.go b/disco/snapshot.go index 99a328561..19d8e7656 100644 --- a/disco/snapshot.go +++ b/disco/snapshot.go @@ -6,8 +6,8 @@ import ( "encoding/binary" "hash/fnv" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) const ( diff --git a/encoding/proto/proto.go b/encoding/proto/proto.go index c87b39522..dad34da40 100644 --- a/encoding/proto/proto.go +++ b/encoding/proto/proto.go @@ -8,13 +8,13 @@ import ( "time" "github.com/gogo/protobuf/proto" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/ingest" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/pb" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/ingest" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/pb" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" ) diff --git a/encoding/proto/proto_test.go b/encoding/proto/proto_test.go index efe3f3f5b..aec0966f7 100644 --- a/encoding/proto/proto_test.go +++ b/encoding/proto/proto_test.go @@ -7,9 +7,9 @@ import ( "reflect" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/pb" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/pb" ) func testOneRoundTrip(t *testing.T, s pilosa.Serializer, obj pilosa.Message, expectedMarshalErr error, expectedUnmarshalErr error, expectedMismatchErr error) { diff --git a/etcd/embed.go b/etcd/embed.go index 483eeb600..e15cd8078 100644 --- a/etcd/embed.go +++ b/etcd/embed.go @@ -14,9 +14,9 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/monitor" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/monitor" "github.com/pkg/errors" "go.etcd.io/etcd/api/v3/mvccpb" "go.etcd.io/etcd/client/pkg/v3/transport" diff --git a/etcd/embed_test.go b/etcd/embed_test.go index ae2d5f8f2..2f7d34249 100644 --- a/etcd/embed_test.go +++ b/etcd/embed_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" "go.etcd.io/etcd/server/v3/embed" ) diff --git a/etcd/external.go b/etcd/external.go index b6d342a5a..f31d7bfbc 100644 --- a/etcd/external.go +++ b/etcd/external.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/molecula/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/disco" clientv3 "go.etcd.io/etcd/client/v3" ) diff --git a/etcd/external_test.go b/etcd/external_test.go index a41ff19a0..d65882365 100644 --- a/etcd/external_test.go +++ b/etcd/external_test.go @@ -3,7 +3,7 @@ package etcd import ( "testing" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) func TestNewExternalEtcd(t *testing.T) { diff --git a/etcd/fake_test.go b/etcd/fake_test.go index 42600e4d4..ae41c3d89 100644 --- a/etcd/fake_test.go +++ b/etcd/fake_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" "golang.org/x/sync/errgroup" ) diff --git a/etcd/leasedkv.go b/etcd/leasedkv.go index ed6479897..826f4bcc8 100644 --- a/etcd/leasedkv.go +++ b/etcd/leasedkv.go @@ -8,7 +8,7 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/disco" "github.com/pkg/errors" clientv3 "go.etcd.io/etcd/client/v3" "go.etcd.io/etcd/client/v3/clientv3util" diff --git a/etcd/leasedkv_test.go b/etcd/leasedkv_test.go index d910e8ef5..cfdc481ad 100644 --- a/etcd/leasedkv_test.go +++ b/etcd/leasedkv_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/testhook" "github.com/pkg/errors" "go.etcd.io/etcd/server/v3/embed" "go.etcd.io/etcd/server/v3/etcdserver/api/v3client" diff --git a/event.go b/event.go index ba98aaf5b..63ae404d9 100644 --- a/event.go +++ b/event.go @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 package pilosa -import "github.com/molecula/featurebase/v3/disco" +import "github.com/featurebasedb/featurebase/v3/disco" // NodeEventType are the types of node events. type NodeEventType int diff --git a/executor.go b/executor.go index d2bd595dd..77857c6ea 100644 --- a/executor.go +++ b/executor.go @@ -18,14 +18,14 @@ import ( "unsafe" "github.com/lib/pq" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/shardwidth" - "github.com/molecula/featurebase/v3/task" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/task" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/tracing" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) @@ -669,7 +669,7 @@ func (e *executor) executeCall(ctx context.Context, qcx *Qcx, index string, c *p } // Fixes #2009 - // See: https://github.com/molecula/featurebase/issues/2009 + // See: https://github.com/featurebasedb/featurebase/issues/2009 // TODO: Remove at version 2.0 if e.detectRangeCall(c) { e.Holder.Logger.Infof("DEPRECATED: Range() is deprecated, please use Row() instead.") diff --git a/executor_internal_test.go b/executor_internal_test.go index 3041cf7da..fd7a2a6d8 100644 --- a/executor_internal_test.go +++ b/executor_internal_test.go @@ -11,8 +11,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/testhook" ) func TestExecutor_TranslateRowsOnBool(t *testing.T) { diff --git a/executor_test.go b/executor_test.go index f1d8dfc40..7275204db 100644 --- a/executor_test.go +++ b/executor_test.go @@ -26,16 +26,16 @@ import ( "github.com/davecgh/go-spew/spew" "github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp/cmpopts" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/ctl" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/testhook" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/testhook" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck "github.com/pkg/errors" ) diff --git a/field.go b/field.go index 5c2e4029a..ef1910386 100644 --- a/field.go +++ b/field.go @@ -16,12 +16,12 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/tracing" "github.com/pkg/errors" ) diff --git a/field_internal_test.go b/field_internal_test.go index fd1431f19..9636aafda 100644 --- a/field_internal_test.go +++ b/field_internal_test.go @@ -13,11 +13,11 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/shardwidth" - "github.com/molecula/featurebase/v3/testhook" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/testhook" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) // CorruptAMutex breaks a mutex in order to test the mutex-corruption stuff. diff --git a/field_test.go b/field_test.go index e9f6cf90d..2e1192d0f 100644 --- a/field_test.go +++ b/field_test.go @@ -10,11 +10,11 @@ import ( "time" "github.com/google/go-cmp/cmp" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/testhook" "github.com/pkg/errors" ) diff --git a/fragment.go b/fragment.go index 473f679b6..318efb86c 100644 --- a/fragment.go +++ b/fragment.go @@ -24,17 +24,17 @@ import ( "github.com/cespare/xxhash" "github.com/gogo/protobuf/proto" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/pb" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/shardwidth" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/tracing" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/pb" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" ) diff --git a/fragment_internal_test.go b/fragment_internal_test.go index 829a9b87b..70534d992 100644 --- a/fragment_internal_test.go +++ b/fragment_internal_test.go @@ -20,10 +20,10 @@ import ( "testing/quick" "github.com/davecgh/go-spew/spew" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/testhook" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/testhook" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/gcnotify/gcnotify.go b/gcnotify/gcnotify.go index 636988dc8..e0eeb4e19 100644 --- a/gcnotify/gcnotify.go +++ b/gcnotify/gcnotify.go @@ -4,7 +4,7 @@ package gcnotify import ( "github.com/CAFxX/gcnotifier" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" ) // Ensure ActiveGCNotifier implements interface. diff --git a/go.mod b/go.mod index ca5df9631..60818781b 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/molecula/featurebase/v3 +module github.com/featurebasedb/featurebase/v3 replace github.com/go-avro/avro => github.com/pilosa/avro v0.0.0-20200626214113-bc1bf9fd41c1 diff --git a/gopsutil/systeminfo.go b/gopsutil/systeminfo.go index 88b878342..5dac2ef65 100644 --- a/gopsutil/systeminfo.go +++ b/gopsutil/systeminfo.go @@ -7,7 +7,7 @@ import ( "runtime" "strings" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" "github.com/shirou/gopsutil/v3/cpu" "github.com/shirou/gopsutil/v3/disk" "github.com/shirou/gopsutil/v3/host" diff --git a/gopsutil/systeminfo_test.go b/gopsutil/systeminfo_test.go index a1da96498..83861d7ff 100644 --- a/gopsutil/systeminfo_test.go +++ b/gopsutil/systeminfo_test.go @@ -5,8 +5,8 @@ package gopsutil_test import ( "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/gopsutil" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/gopsutil" ) func TestSystemInfo(t *testing.T) { diff --git a/hack.go b/hack.go index 095b68228..bf40f3340 100644 --- a/hack.go +++ b/hack.go @@ -7,8 +7,8 @@ import ( "time" "github.com/gogo/protobuf/proto" - "github.com/molecula/featurebase/v3/pb" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/pb" + "github.com/featurebasedb/featurebase/v3/pql" ) func UnmarshalIndexOptions(name string, createdAt int64, buf []byte) (*IndexOptions, error) { diff --git a/handler.go b/handler.go index 9a60f3ac4..510cf6f67 100644 --- a/handler.go +++ b/handler.go @@ -6,8 +6,8 @@ import ( "encoding/json" "time" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/tracing" "github.com/pkg/errors" ) diff --git a/hash/blake3_test.go b/hash/blake3_test.go index f3f9c1a40..f3e8e4976 100644 --- a/hash/blake3_test.go +++ b/hash/blake3_test.go @@ -10,7 +10,7 @@ import ( "path" "testing" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) func TestBlake3Hasher(t *testing.T) { diff --git a/holder.go b/holder.go index 00b7a8595..c39509c6d 100644 --- a/holder.go +++ b/holder.go @@ -13,14 +13,14 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/storage" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/holder_internal_test.go b/holder_internal_test.go index 9cee25d47..32be7b568 100644 --- a/holder_internal_test.go +++ b/holder_internal_test.go @@ -5,8 +5,8 @@ package pilosa import ( "testing" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/testhook" ) // mustHolderConfig sets up a default holder config for tests. diff --git a/holder_test.go b/holder_test.go index 3841ccb37..a827ba39c 100644 --- a/holder_test.go +++ b/holder_test.go @@ -11,10 +11,10 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/test" "github.com/pkg/errors" ) diff --git a/http_handler.go b/http_handler.go index 3a6487389..f46c5cbc7 100644 --- a/http_handler.go +++ b/http_handler.go @@ -30,16 +30,16 @@ import ( "github.com/felixge/fgprof" "github.com/gorilla/handlers" "github.com/gorilla/mux" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/authz" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/monitor" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/rbf" - "github.com/molecula/featurebase/v3/storage" - "github.com/molecula/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/authz" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/monitor" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/rbf" + "github.com/featurebasedb/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/tracing" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus/promhttp" dto "github.com/prometheus/client_model/go" diff --git a/http_handler_internal_test.go b/http_handler_internal_test.go index df0a163f3..c6a7192aa 100644 --- a/http_handler_internal_test.go +++ b/http_handler_internal_test.go @@ -19,12 +19,12 @@ import ( "time" "github.com/golang-jwt/jwt" - "github.com/molecula/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/authn" "golang.org/x/oauth2" - "github.com/molecula/featurebase/v3/authz" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/authz" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/pql" ) // Test custom UnmarshalJSON for postIndexRequest object diff --git a/http_handler_test.go b/http_handler_test.go index 5e5f55f25..b57b41d88 100644 --- a/http_handler_test.go +++ b/http_handler_test.go @@ -18,10 +18,10 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" ) func TestHandlerOptions(t *testing.T) { diff --git a/http_translator.go b/http_translator.go index db48592f3..f1b733392 100644 --- a/http_translator.go +++ b/http_translator.go @@ -13,7 +13,7 @@ import ( "reflect" "sync" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) func GetOpenTranslateReaderFunc(client *http.Client) OpenTranslateReaderFunc { diff --git a/http_translator_test.go b/http_translator_test.go index 8406bfd9b..5f6bfcc9e 100644 --- a/http_translator_test.go +++ b/http_translator_test.go @@ -9,8 +9,8 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/test" ) func TestTranslateStore_EntryReader(t *testing.T) { diff --git a/idalloc_test.go b/idalloc_test.go index 1ef054c69..1c98f94d6 100644 --- a/idalloc_test.go +++ b/idalloc_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" bolt "go.etcd.io/bbolt" ) diff --git a/idk/Dockerfile-test b/idk/Dockerfile-test index 7c135f2af..c957674af 100644 --- a/idk/Dockerfile-test +++ b/idk/Dockerfile-test @@ -15,10 +15,10 @@ RUN ["make", "install"] FROM build_base -WORKDIR /go/src/github.com/molecula/featurebase/ +WORKDIR /go/src/github.com/featurebasedb/featurebase/ COPY . . -WORKDIR /go/src/github.com/molecula/featurebase/idk/ +WORKDIR /go/src/github.com/featurebasedb/featurebase/idk/ CMD ["go","test","-v","-mod=vendor","-tags=odbc,dynamic","./..."] diff --git a/idk/Makefile b/idk/Makefile index 8c4379f3a..4d011d516 100644 --- a/idk/Makefile +++ b/idk/Makefile @@ -32,8 +32,8 @@ else IS_MAC := 0 endif -LDFLAGS="-X 'github.com/molecula/featurebase/v3/idk.Version=$(VERSION)' -X 'github.com/molecula/featurebase/v3/idk.BuildTime=$(BUILD_TIME)'" -LDFLAGS_STATIC="-linkmode external -extldflags \"-static\" -X 'github.com/molecula/featurebase/v3/idk.Version=$(VERSION)' -X 'github.com/molecula/featurebase/v3/idk.BuildTime=$(BUILD_TIME)' " +LDFLAGS="-X 'github.com/featurebasedb/featurebase/v3/idk.Version=$(VERSION)' -X 'github.com/featurebasedb/featurebase/v3/idk.BuildTime=$(BUILD_TIME)'" +LDFLAGS_STATIC="-linkmode external -extldflags \"-static\" -X 'github.com/featurebasedb/featurebase/v3/idk.Version=$(VERSION)' -X 'github.com/featurebasedb/featurebase/v3/idk.BuildTime=$(BUILD_TIME)' " export GOPRIVATE=github.com/molecula export CGO_ENABLED=1 @@ -222,7 +222,7 @@ TPKG ?= ./... test-run: testenv vendor $(DOCKER_COMPOSE) build idk-test $(DOCKER_COMPOSE) run -T idk-test bash -c "set -o pipefail; go test -v -mod=vendor -tags=odbc,dynamic $(TPKG) -covermode=atomic -coverpkg=$(TPKG) -json -coverprofile=/testdata/$(PROJECT)_coverage.out | tee /testdata/$(PROJECT)_report.out" - $(DOCKER_COMPOSE) run -T idk-test /go/src/github.com/molecula/featurebase/idk/reingest_test.sh + $(DOCKER_COMPOSE) run -T idk-test /go/src/github.com/featurebasedb/featurebase/idk/reingest_test.sh test-run-race: testenv vendor diff --git a/idk/api/schema.go b/idk/api/schema.go index 0234a5812..563429232 100644 --- a/idk/api/schema.go +++ b/idk/api/schema.go @@ -5,8 +5,8 @@ import ( "io" "time" - pilosa "github.com/molecula/featurebase/v3" - pilosaclient "github.com/molecula/featurebase/v3/client" + pilosa "github.com/featurebasedb/featurebase/v3" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" "github.com/pkg/errors" ) diff --git a/idk/api/schema_test.go b/idk/api/schema_test.go index d88992954..5033736c9 100644 --- a/idk/api/schema_test.go +++ b/idk/api/schema_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - pilosaclient "github.com/molecula/featurebase/v3/client" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" "github.com/stretchr/testify/assert" ) diff --git a/idk/api/source.go b/idk/api/source.go index 58f4deae7..8b81b8a51 100644 --- a/idk/api/source.go +++ b/idk/api/source.go @@ -8,11 +8,11 @@ import ( "reflect" "strconv" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/pkg/errors" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/pql" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/pql" ) func IngestJSON(index *pilosaclient.Index, m idk.Main, in io.Reader) error { diff --git a/idk/api/source_test.go b/idk/api/source_test.go index 3843ccf8b..5cd73525f 100644 --- a/idk/api/source_test.go +++ b/idk/api/source_test.go @@ -7,8 +7,8 @@ import ( "strings" "testing" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/stretchr/testify/assert" ) diff --git a/idk/bankgen/put.go b/idk/bankgen/put.go index 01531f51b..466ff7c6c 100644 --- a/idk/bankgen/put.go +++ b/idk/bankgen/put.go @@ -11,10 +11,10 @@ import ( "sync/atomic" liavro "github.com/linkedin/goavro/v2" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/idk/kafka/csrc" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk/kafka/csrc" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" confluent "github.com/confluentinc/confluent-kafka-go/kafka" diff --git a/idk/cmd/bankgen/main.go b/idk/cmd/bankgen/main.go index 8e687f3c0..f970e5e80 100644 --- a/idk/cmd/bankgen/main.go +++ b/idk/cmd/bankgen/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/bankgen" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/bankgen" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/bankgen/main_test.go b/idk/cmd/bankgen/main_test.go index b2b1ad6a0..35585079a 100644 --- a/idk/cmd/bankgen/main_test.go +++ b/idk/cmd/bankgen/main_test.go @@ -6,7 +6,7 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/bankgen" + "github.com/featurebasedb/featurebase/v3/idk/bankgen" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/cmd/datagen/main.go b/idk/cmd/datagen/main.go index 150693804..a93180f8c 100644 --- a/idk/cmd/datagen/main.go +++ b/idk/cmd/datagen/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/datagen" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/datagen" + "github.com/featurebasedb/featurebase/v3/logger" "gopkg.in/DataDog/dd-trace-go.v1/profiler" ) diff --git a/idk/cmd/datagen/main_test.go b/idk/cmd/datagen/main_test.go index ac4c5f8f3..d779415c3 100644 --- a/idk/cmd/datagen/main_test.go +++ b/idk/cmd/datagen/main_test.go @@ -7,7 +7,7 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/datagen" + "github.com/featurebasedb/featurebase/v3/idk/datagen" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/cmd/ingester/main.go b/idk/cmd/ingester/main.go index b4b3540db..e7aca6ba5 100644 --- a/idk/cmd/ingester/main.go +++ b/idk/cmd/ingester/main.go @@ -8,9 +8,9 @@ import ( "github.com/gorilla/mux" "github.com/jaffee/commandeer/pflag" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/api" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/api" "github.com/pkg/errors" ) diff --git a/idk/cmd/kafkagen/main.go b/idk/cmd/kafkagen/main.go index e6f6bd7a7..8616f0745 100644 --- a/idk/cmd/kafkagen/main.go +++ b/idk/cmd/kafkagen/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafkagen" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/kafkagen" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/kafkagen/main_test.go b/idk/cmd/kafkagen/main_test.go index c84437963..d0169bb27 100644 --- a/idk/cmd/kafkagen/main_test.go +++ b/idk/cmd/kafkagen/main_test.go @@ -6,7 +6,7 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafkagen" + "github.com/featurebasedb/featurebase/v3/idk/kafkagen" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/cmd/kafkaput/main.go b/idk/cmd/kafkaput/main.go index 85215daa3..2bc9989f5 100644 --- a/idk/cmd/kafkaput/main.go +++ b/idk/cmd/kafkaput/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafka" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/kafka" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/kafkaput/main_test.go b/idk/cmd/kafkaput/main_test.go index 4a4d1774e..3d985292e 100644 --- a/idk/cmd/kafkaput/main_test.go +++ b/idk/cmd/kafkaput/main_test.go @@ -6,7 +6,7 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafka" + "github.com/featurebasedb/featurebase/v3/idk/kafka" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/cmd/molecula-consumer-csv/main.go b/idk/cmd/molecula-consumer-csv/main.go index 0d1b4f37e..a13dce14c 100644 --- a/idk/cmd/molecula-consumer-csv/main.go +++ b/idk/cmd/molecula-consumer-csv/main.go @@ -6,8 +6,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/csv" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/csv" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/molecula-consumer-csv/main_test.go b/idk/cmd/molecula-consumer-csv/main_test.go index f9322aa67..313ca3cbd 100644 --- a/idk/cmd/molecula-consumer-csv/main_test.go +++ b/idk/cmd/molecula-consumer-csv/main_test.go @@ -6,7 +6,7 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/csv" + "github.com/featurebasedb/featurebase/v3/idk/csv" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/cmd/molecula-consumer-github/main.go b/idk/cmd/molecula-consumer-github/main.go index 1bc665e73..a10ae8266 100644 --- a/idk/cmd/molecula-consumer-github/main.go +++ b/idk/cmd/molecula-consumer-github/main.go @@ -16,8 +16,8 @@ import ( "time" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/cmd/molecula-consumer-kafka-delete/main.go b/idk/cmd/molecula-consumer-kafka-delete/main.go index 3e1053f3d..429632a40 100644 --- a/idk/cmd/molecula-consumer-kafka-delete/main.go +++ b/idk/cmd/molecula-consumer-kafka-delete/main.go @@ -4,7 +4,7 @@ import ( "log" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafka" + "github.com/featurebasedb/featurebase/v3/idk/kafka" ) func main() { diff --git a/idk/cmd/molecula-consumer-kafka-delete/main_test.go b/idk/cmd/molecula-consumer-kafka-delete/main_test.go index 19ce873a5..2aba1f68d 100644 --- a/idk/cmd/molecula-consumer-kafka-delete/main_test.go +++ b/idk/cmd/molecula-consumer-kafka-delete/main_test.go @@ -7,7 +7,7 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafka" + "github.com/featurebasedb/featurebase/v3/idk/kafka" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/cmd/molecula-consumer-kafka-sasl/main.go b/idk/cmd/molecula-consumer-kafka-sasl/main.go index 88e441e00..f4a9ce861 100644 --- a/idk/cmd/molecula-consumer-kafka-sasl/main.go +++ b/idk/cmd/molecula-consumer-kafka-sasl/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafka_sasl" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/kafka_sasl" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/molecula-consumer-kafka-static/main.go b/idk/cmd/molecula-consumer-kafka-static/main.go index e79c80597..265bd5b6f 100644 --- a/idk/cmd/molecula-consumer-kafka-static/main.go +++ b/idk/cmd/molecula-consumer-kafka-static/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafka_static" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/kafka_static" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/molecula-consumer-kafka/main.go b/idk/cmd/molecula-consumer-kafka/main.go index 70ca74840..75ce39e89 100644 --- a/idk/cmd/molecula-consumer-kafka/main.go +++ b/idk/cmd/molecula-consumer-kafka/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kafka" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/kafka" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/molecula-consumer-kafka/main_test.go b/idk/cmd/molecula-consumer-kafka/main_test.go index bd7ba0cca..ff9fcdbe8 100644 --- a/idk/cmd/molecula-consumer-kafka/main_test.go +++ b/idk/cmd/molecula-consumer-kafka/main_test.go @@ -7,8 +7,8 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/kafka" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/kafka" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/cmd/molecula-consumer-kinesis/main.go b/idk/cmd/molecula-consumer-kinesis/main.go index 3eb1f8af3..d25ca7c0e 100644 --- a/idk/cmd/molecula-consumer-kinesis/main.go +++ b/idk/cmd/molecula-consumer-kinesis/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/kinesis" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/kinesis" + "github.com/featurebasedb/featurebase/v3/logger" ) func logFailure(errorType kinesis.ErrorType, m *kinesis.Main, v interface{}) { diff --git a/idk/cmd/molecula-consumer-sql/main.go b/idk/cmd/molecula-consumer-sql/main.go index a7a779248..af556fe24 100644 --- a/idk/cmd/molecula-consumer-sql/main.go +++ b/idk/cmd/molecula-consumer-sql/main.go @@ -5,8 +5,8 @@ import ( "os" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/sql" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/sql" + "github.com/featurebasedb/featurebase/v3/logger" ) func main() { diff --git a/idk/cmd/molecula-consumer-sql/main_test.go b/idk/cmd/molecula-consumer-sql/main_test.go index 5c058c4fa..f6b75d807 100644 --- a/idk/cmd/molecula-consumer-sql/main_test.go +++ b/idk/cmd/molecula-consumer-sql/main_test.go @@ -6,7 +6,7 @@ import ( "github.com/jaffee/commandeer" "github.com/jaffee/commandeer/pflag" - "github.com/molecula/featurebase/v3/idk/sql" + "github.com/featurebasedb/featurebase/v3/idk/sql" pflag13 "github.com/spf13/pflag" ) diff --git a/idk/common/configMap.go b/idk/common/configMap.go index 20a1084fa..ad62826ca 100644 --- a/idk/common/configMap.go +++ b/idk/common/configMap.go @@ -8,7 +8,7 @@ import ( "sync/atomic" confluent "github.com/confluentinc/confluent-kafka-go/kafka" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/pkg/errors" ) diff --git a/idk/csv/cmd.go b/idk/csv/cmd.go index a7ae7f8fa..100356b12 100644 --- a/idk/csv/cmd.go +++ b/idk/csv/cmd.go @@ -6,7 +6,7 @@ import ( "path/filepath" "sync" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/pkg/errors" ) diff --git a/idk/csv/csv_test.go b/idk/csv/csv_test.go index a4c822204..619c9bc3f 100644 --- a/idk/csv/csv_test.go +++ b/idk/csv/csv_test.go @@ -13,7 +13,7 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/idk/idktest" + "github.com/featurebasedb/featurebase/v3/idk/idktest" ) const TestName = "csvtest" diff --git a/idk/csv/source.go b/idk/csv/source.go index a64cb3662..23f01def5 100644 --- a/idk/csv/source.go +++ b/idk/csv/source.go @@ -10,8 +10,8 @@ import ( "strings" "sync" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/datagen/all-field-types.go b/idk/datagen/all-field-types.go index 2226e07ff..f2ca08dc8 100644 --- a/idk/datagen/all-field-types.go +++ b/idk/datagen/all-field-types.go @@ -6,9 +6,9 @@ import ( "strconv" "time" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/datagen/gen" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/datagen/gen" + "github.com/featurebasedb/featurebase/v3/pql" ) // Ensure AllFieldTypes implements interface. diff --git a/idk/datagen/bank.go b/idk/datagen/bank.go index 984e5cd6c..3e2536abb 100644 --- a/idk/datagen/bank.go +++ b/idk/datagen/bank.go @@ -7,8 +7,8 @@ import ( "strconv" "strings" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/datagen/gen" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/datagen/gen" ) // Ensure Bank implements interface. diff --git a/idk/datagen/claim.go b/idk/datagen/claim.go index 4bfb0d3bf..1b7f9d66e 100644 --- a/idk/datagen/claim.go +++ b/idk/datagen/claim.go @@ -5,8 +5,8 @@ import ( "math/rand" "time" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Claim implements interface. diff --git a/idk/datagen/cmd.go b/idk/datagen/cmd.go index ebe1a983e..2a3337daf 100644 --- a/idk/datagen/cmd.go +++ b/idk/datagen/cmd.go @@ -12,13 +12,13 @@ import ( "sync" "github.com/glycerine/vprint" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/idk/kafka" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk/kafka" ) const ( @@ -227,7 +227,7 @@ func (m *Main) Preload() error { // TODO: this is a little hacky because of the complexity around // PrimaryKeyFields and IDField, and the fact that those are // currently being set before having a schema. - // See: https://github.com/molecula/featurebase/v3/idk/issues/147 + // See: https://github.com/featurebasedb/featurebase/v3/idk/issues/147 switch { case len(pks) == 1 && pks[0] == "id": m.idkMain.IDField = "id" diff --git a/idk/datagen/common.go b/idk/datagen/common.go index 60d7fb6d2..5e58daa46 100644 --- a/idk/datagen/common.go +++ b/idk/datagen/common.go @@ -1,7 +1,7 @@ package datagen import ( - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" ) // SourceGenerator is an interface for anything which can generate diff --git a/idk/datagen/custom.go b/idk/datagen/custom.go index 3db2943cf..90723c8bb 100644 --- a/idk/datagen/custom.go +++ b/idk/datagen/custom.go @@ -13,7 +13,7 @@ import ( "strconv" "time" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/pkg/errors" "sigs.k8s.io/yaml" ) diff --git a/idk/datagen/custom_test.go b/idk/datagen/custom_test.go index 6370a3f17..ec289ef99 100644 --- a/idk/datagen/custom_test.go +++ b/idk/datagen/custom_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" ) func TestGetIDKFields(t *testing.T) { diff --git a/idk/datagen/customer.go b/idk/datagen/customer.go index 569e0fb84..8988542de 100644 --- a/idk/datagen/customer.go +++ b/idk/datagen/customer.go @@ -4,8 +4,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Customer implements interface. diff --git a/idk/datagen/customer_segmentation.go b/idk/datagen/customer_segmentation.go index 446da930f..36ff86e1f 100644 --- a/idk/datagen/customer_segmentation.go +++ b/idk/datagen/customer_segmentation.go @@ -7,8 +7,8 @@ import ( "sort" "strings" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/datagen/gen" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/datagen/gen" ) /* diff --git a/idk/datagen/equipment.go b/idk/datagen/equipment.go index 0af1800df..3b804fbd4 100644 --- a/idk/datagen/equipment.go +++ b/idk/datagen/equipment.go @@ -6,8 +6,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Equipment implements interface. diff --git a/idk/datagen/example.go b/idk/datagen/example.go index c9db61d35..1b0c601fc 100644 --- a/idk/datagen/example.go +++ b/idk/datagen/example.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" ) // Ensure Example implements interface. diff --git a/idk/datagen/gen/gen_test.go b/idk/datagen/gen/gen_test.go index 3e00479b2..eeb18061e 100644 --- a/idk/datagen/gen/gen_test.go +++ b/idk/datagen/gen/gen_test.go @@ -3,7 +3,7 @@ package gen_test import ( "testing" - "github.com/molecula/featurebase/v3/idk/datagen/gen" + "github.com/featurebasedb/featurebase/v3/idk/datagen/gen" ) func TestGen(t *testing.T) { diff --git a/idk/datagen/item.go b/idk/datagen/item.go index 81a90722d..baba5a72e 100644 --- a/idk/datagen/item.go +++ b/idk/datagen/item.go @@ -5,8 +5,8 @@ import ( "math/rand" "time" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Item implements interface. diff --git a/idk/datagen/kitchen-sink-keyed.go b/idk/datagen/kitchen-sink-keyed.go index 59d7b9e82..1c8ac4c3a 100644 --- a/idk/datagen/kitchen-sink-keyed.go +++ b/idk/datagen/kitchen-sink-keyed.go @@ -9,8 +9,8 @@ import ( "strconv" "time" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/datagen/gen" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/datagen/gen" ) // Ensure KitchenSinkKeyed implements interface. diff --git a/idk/datagen/kitchen-sink.go b/idk/datagen/kitchen-sink.go index a13f9ea02..05a91cd66 100644 --- a/idk/datagen/kitchen-sink.go +++ b/idk/datagen/kitchen-sink.go @@ -6,9 +6,9 @@ import ( "strconv" "time" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/datagen/gen" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/datagen/gen" + "github.com/featurebasedb/featurebase/v3/pql" ) // Ensure KitchenSink implements interface. diff --git a/idk/datagen/network.go b/idk/datagen/network.go index 58bd5238f..e59e9e175 100644 --- a/idk/datagen/network.go +++ b/idk/datagen/network.go @@ -4,8 +4,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Network implements interface. diff --git a/idk/datagen/sites.go b/idk/datagen/sites.go index b0d85f398..2406500b9 100644 --- a/idk/datagen/sites.go +++ b/idk/datagen/sites.go @@ -5,8 +5,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Site implements interface. diff --git a/idk/datagen/sizing.go b/idk/datagen/sizing.go index bfded35c9..41bf072cb 100644 --- a/idk/datagen/sizing.go +++ b/idk/datagen/sizing.go @@ -4,9 +4,9 @@ import ( "io" "math/rand" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Sizing implements interface. diff --git a/idk/datagen/stringpk.go b/idk/datagen/stringpk.go index d20564d74..80828efe6 100644 --- a/idk/datagen/stringpk.go +++ b/idk/datagen/stringpk.go @@ -3,8 +3,8 @@ package datagen import ( "io" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/datagen/gen" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/datagen/gen" ) // Ensure StringPK implements interface. diff --git a/idk/datagen/timeseries.go b/idk/datagen/timeseries.go index a4da34c67..fe41fb401 100644 --- a/idk/datagen/timeseries.go +++ b/idk/datagen/timeseries.go @@ -4,8 +4,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Timeseries implements interface. diff --git a/idk/datagen/transactions.go b/idk/datagen/transactions.go index d7c6b9360..bd282a5a1 100644 --- a/idk/datagen/transactions.go +++ b/idk/datagen/transactions.go @@ -4,8 +4,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Transaction implements interface. diff --git a/idk/datagen/transactions_scenario_1.go b/idk/datagen/transactions_scenario_1.go index 07b382ab1..e6467f156 100644 --- a/idk/datagen/transactions_scenario_1.go +++ b/idk/datagen/transactions_scenario_1.go @@ -4,8 +4,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Transaction1 implements interface. diff --git a/idk/datagen/warranty.go b/idk/datagen/warranty.go index c8e92c5a0..db12ff250 100644 --- a/idk/datagen/warranty.go +++ b/idk/datagen/warranty.go @@ -5,8 +5,8 @@ import ( "io" "math/rand" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" ) // Ensure Warranty implements interface. diff --git a/idk/header.go b/idk/header.go index cb0e37188..93a7fd4a5 100644 --- a/idk/header.go +++ b/idk/header.go @@ -6,8 +6,8 @@ import ( "strings" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/logger" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/idallocator.go b/idk/idallocator.go index 797d05844..0660471aa 100644 --- a/idk/idallocator.go +++ b/idk/idallocator.go @@ -16,7 +16,7 @@ import ( "sync" - pilosacore "github.com/molecula/featurebase/v3" + pilosacore "github.com/featurebasedb/featurebase/v3" "github.com/pkg/errors" ) diff --git a/idk/idallocator_test.go b/idk/idallocator_test.go index 670ef9ae4..0524d4cd2 100644 --- a/idk/idallocator_test.go +++ b/idk/idallocator_test.go @@ -13,7 +13,7 @@ import ( "testing" "time" - pilosacore "github.com/molecula/featurebase/v3" + pilosacore "github.com/featurebasedb/featurebase/v3" "github.com/pkg/errors" ) diff --git a/idk/ingest.go b/idk/ingest.go index 38b68d5af..d915476d6 100644 --- a/idk/ingest.go +++ b/idk/ingest.go @@ -24,14 +24,14 @@ import ( "time" "github.com/felixge/fgprof" - pilosacore "github.com/molecula/featurebase/v3" - pilosagrpc "github.com/molecula/featurebase/v3/api/client" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/prometheus" - proto "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/stats" + pilosacore "github.com/featurebasedb/featurebase/v3" + pilosagrpc "github.com/featurebasedb/featurebase/v3/api/client" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/prometheus" + proto "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/stats" "github.com/pkg/errors" prom "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" diff --git a/idk/ingest_test.go b/idk/ingest_test.go index 55c8612b5..267f858b1 100644 --- a/idk/ingest_test.go +++ b/idk/ingest_test.go @@ -16,10 +16,10 @@ import ( "time" "github.com/golang-jwt/jwt" - "github.com/molecula/featurebase/v3/authn" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk/idktest" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/authn" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk/idktest" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/interfaces.go b/idk/interfaces.go index 935760da4..82b4b6c46 100644 --- a/idk/interfaces.go +++ b/idk/interfaces.go @@ -11,9 +11,9 @@ import ( "strings" "time" - pilosacore "github.com/molecula/featurebase/v3" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/pql" + pilosacore "github.com/featurebasedb/featurebase/v3" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/pql" "github.com/pkg/errors" ) diff --git a/idk/kafka/cmd.go b/idk/kafka/cmd.go index 44efbcebd..6262eaa54 100644 --- a/idk/kafka/cmd.go +++ b/idk/kafka/cmd.go @@ -3,7 +3,7 @@ package kafka import ( "time" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/pkg/errors" ) diff --git a/idk/kafka/cmd_delete_test.go b/idk/kafka/cmd_delete_test.go index 919b03932..7ca359f34 100644 --- a/idk/kafka/cmd_delete_test.go +++ b/idk/kafka/cmd_delete_test.go @@ -14,9 +14,9 @@ import ( confluent "github.com/confluentinc/confluent-kafka-go/kafka" "github.com/jaffee/commandeer/pflag" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/kafka/cmd_test.go b/idk/kafka/cmd_test.go index 9256faaf1..2ea1879bc 100644 --- a/idk/kafka/cmd_test.go +++ b/idk/kafka/cmd_test.go @@ -18,10 +18,10 @@ import ( confluent "github.com/confluentinc/confluent-kafka-go/kafka" liavro "github.com/linkedin/goavro/v2" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/kafka/csrc" - "github.com/molecula/featurebase/v3/logger" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/kafka/csrc" + "github.com/featurebasedb/featurebase/v3/logger" ) var pilosaHost string diff --git a/idk/kafka/csrc/csrc.go b/idk/kafka/csrc/csrc.go index 822377f23..e5bff755e 100644 --- a/idk/kafka/csrc/csrc.go +++ b/idk/kafka/csrc/csrc.go @@ -9,7 +9,7 @@ import ( "net/http" "strings" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/pkg/errors" ) diff --git a/idk/kafka/csrc/csrc_integration_test.go b/idk/kafka/csrc/csrc_integration_test.go index b491fcc5c..704ee8ac8 100644 --- a/idk/kafka/csrc/csrc_integration_test.go +++ b/idk/kafka/csrc/csrc_integration_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/molecula/featurebase/v3/idk/kafka/csrc" + "github.com/featurebasedb/featurebase/v3/idk/kafka/csrc" ) func TestPostGet(t *testing.T) { diff --git a/idk/kafka/put.go b/idk/kafka/put.go index afca94762..9fd940833 100644 --- a/idk/kafka/put.go +++ b/idk/kafka/put.go @@ -9,10 +9,10 @@ import ( confluent "github.com/confluentinc/confluent-kafka-go/kafka" liavro "github.com/linkedin/goavro/v2" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/idk/kafka/csrc" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk/kafka/csrc" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/kafka/putsource.go b/idk/kafka/putsource.go index 5b58a3db8..43e38d381 100644 --- a/idk/kafka/putsource.go +++ b/idk/kafka/putsource.go @@ -17,11 +17,11 @@ import ( confluent "github.com/confluentinc/confluent-kafka-go/kafka" "github.com/go-avro/avro" liavro "github.com/linkedin/goavro/v2" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/idk/kafka/csrc" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk/kafka/csrc" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/pql" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/idk/kafka/putsource_test.go b/idk/kafka/putsource_test.go index dfd49bf08..305fd7822 100644 --- a/idk/kafka/putsource_test.go +++ b/idk/kafka/putsource_test.go @@ -6,7 +6,7 @@ import ( "testing" "github.com/go-avro/avro" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" ) func TestIdkSchemaToAvroRecordSchema(t *testing.T) { diff --git a/idk/kafka/source.go b/idk/kafka/source.go index 85b143c48..6423fb60a 100644 --- a/idk/kafka/source.go +++ b/idk/kafka/source.go @@ -22,10 +22,10 @@ import ( confluent "github.com/confluentinc/confluent-kafka-go/kafka" "github.com/go-avro/avro" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/logger" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/kafka/source_test.go b/idk/kafka/source_test.go index 4d96e3167..6cca9926b 100644 --- a/idk/kafka/source_test.go +++ b/idk/kafka/source_test.go @@ -23,10 +23,10 @@ import ( "github.com/glycerine/vprint" "github.com/go-avro/avro" liavro "github.com/linkedin/goavro/v2" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/idk/kafka/csrc" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk/kafka/csrc" + "github.com/featurebasedb/featurebase/v3/logger" ) func configureSourceTestFlags(source *Source) { diff --git a/idk/kafka_sasl/cmd.go b/idk/kafka_sasl/cmd.go index b50e08a3f..8f2f6c6eb 100644 --- a/idk/kafka_sasl/cmd.go +++ b/idk/kafka_sasl/cmd.go @@ -4,8 +4,8 @@ import ( "time" confluent "github.com/confluentinc/confluent-kafka-go/kafka" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" "github.com/pkg/errors" ) diff --git a/idk/kafka_sasl/cmd_test.go b/idk/kafka_sasl/cmd_test.go index cec628044..daa24dae7 100644 --- a/idk/kafka_sasl/cmd_test.go +++ b/idk/kafka_sasl/cmd_test.go @@ -15,10 +15,10 @@ import ( "time" confluent "github.com/confluentinc/confluent-kafka-go/kafka" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/idk/idktest" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk/idktest" "github.com/pkg/errors" "github.com/stretchr/testify/assert" diff --git a/idk/kafka_sasl/source.go b/idk/kafka_sasl/source.go index 69d681a47..61a3a757d 100644 --- a/idk/kafka_sasl/source.go +++ b/idk/kafka_sasl/source.go @@ -11,8 +11,8 @@ import ( "time" confluent "github.com/confluentinc/confluent-kafka-go/kafka" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/kafka_sasl/source_test.go b/idk/kafka_sasl/source_test.go index 90e81f0aa..4b51d0a3e 100644 --- a/idk/kafka_sasl/source_test.go +++ b/idk/kafka_sasl/source_test.go @@ -11,8 +11,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" ) func configureSourceTestFlags(source *Source) { diff --git a/idk/kafka_static/cmd.go b/idk/kafka_static/cmd.go index 68a3a5207..b161bc758 100644 --- a/idk/kafka_static/cmd.go +++ b/idk/kafka_static/cmd.go @@ -3,7 +3,7 @@ package kafka_static import ( "time" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" "github.com/pkg/errors" ) diff --git a/idk/kafka_static/cmd_test.go b/idk/kafka_static/cmd_test.go index b99bf8de1..4f4d9ae55 100644 --- a/idk/kafka_static/cmd_test.go +++ b/idk/kafka_static/cmd_test.go @@ -16,8 +16,8 @@ import ( "github.com/pkg/errors" "github.com/segmentio/kafka-go" - pilosaclient "github.com/molecula/featurebase/v3/client" - "github.com/molecula/featurebase/v3/idk/idktest" + pilosaclient "github.com/featurebasedb/featurebase/v3/client" + "github.com/featurebasedb/featurebase/v3/idk/idktest" ) var pilosaHost string diff --git a/idk/kafka_static/source.go b/idk/kafka_static/source.go index dbdf49378..087d632f9 100644 --- a/idk/kafka_static/source.go +++ b/idk/kafka_static/source.go @@ -15,9 +15,9 @@ import ( "github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/service/s3" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/internal" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/internal" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" segmentio "github.com/segmentio/kafka-go" ) diff --git a/idk/kafka_static/source_test.go b/idk/kafka_static/source_test.go index 1d273f204..d840f86e7 100644 --- a/idk/kafka_static/source_test.go +++ b/idk/kafka_static/source_test.go @@ -13,8 +13,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/internal" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/internal" "github.com/segmentio/kafka-go" ) diff --git a/idk/kafkagen/cmd.go b/idk/kafkagen/cmd.go index f2a069652..205ddc3aa 100644 --- a/idk/kafkagen/cmd.go +++ b/idk/kafkagen/cmd.go @@ -9,9 +9,9 @@ import ( confluent "github.com/confluentinc/confluent-kafka-go/kafka" liavro "github.com/linkedin/goavro/v2" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/common" - "github.com/molecula/featurebase/v3/idk/kafka/csrc" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/common" + "github.com/featurebasedb/featurebase/v3/idk/kafka/csrc" "github.com/pkg/errors" ) diff --git a/idk/kinesis/cmd.go b/idk/kinesis/cmd.go index bb9b9bded..7ab1eb052 100644 --- a/idk/kinesis/cmd.go +++ b/idk/kinesis/cmd.go @@ -5,7 +5,7 @@ import ( "github.com/pkg/errors" - "github.com/molecula/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk" ) // Main is the holder of all configurations for a Kinesis stream consumer. diff --git a/idk/kinesis/logger.go b/idk/kinesis/logger.go index 88f9cc9aa..08a36ead4 100644 --- a/idk/kinesis/logger.go +++ b/idk/kinesis/logger.go @@ -13,7 +13,7 @@ import ( "github.com/google/uuid" "github.com/pkg/errors" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) // ErrorType signifies the type of error encountered. diff --git a/idk/kinesis/logger_test.go b/idk/kinesis/logger_test.go index 074621c05..19a49e79a 100644 --- a/idk/kinesis/logger_test.go +++ b/idk/kinesis/logger_test.go @@ -14,8 +14,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" - "github.com/molecula/featurebase/v3/idk/idktest/mocks" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/idktest/mocks" + "github.com/featurebasedb/featurebase/v3/logger" ) // In-memory featurebase/logger.Logger implementation that stores by level diff --git a/idk/kinesis/reader.go b/idk/kinesis/reader.go index 7b1cfb369..00721cbb3 100644 --- a/idk/kinesis/reader.go +++ b/idk/kinesis/reader.go @@ -15,8 +15,8 @@ import ( "github.com/aws/aws-sdk-go/service/kinesis" "github.com/aws/aws-sdk-go/service/kinesis/kinesisiface" "github.com/aws/aws-sdk-go/service/s3/s3iface" - "github.com/molecula/featurebase/v3/idk/internal" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/internal" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/kinesis/reader_test.go b/idk/kinesis/reader_test.go index b4d55551b..ac84442c0 100644 --- a/idk/kinesis/reader_test.go +++ b/idk/kinesis/reader_test.go @@ -12,8 +12,8 @@ import ( "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/service/kinesis" - "github.com/molecula/featurebase/v3/idk/idktest/mocks" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk/idktest/mocks" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/idk/kinesis/source.go b/idk/kinesis/source.go index a52fc6fd1..802800e4d 100644 --- a/idk/kinesis/source.go +++ b/idk/kinesis/source.go @@ -17,9 +17,9 @@ import ( "github.com/aws/aws-sdk-go/service/s3/s3iface" "github.com/aws/aws-sdk-go/service/sqs" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/idk/internal" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/idk/internal" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/postgres.go b/idk/postgres.go index 9e57449c5..052b3a53a 100644 --- a/idk/postgres.go +++ b/idk/postgres.go @@ -10,7 +10,7 @@ import ( _ "github.com/lib/pq" "github.com/pkg/errors" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) const IDColumn = "id" diff --git a/idk/sql/source.go b/idk/sql/source.go index 877f9f5a1..538fd52b9 100644 --- a/idk/sql/source.go +++ b/idk/sql/source.go @@ -11,8 +11,8 @@ import ( _ "github.com/go-sql-driver/mysql" _ "github.com/lib/pq" - "github.com/molecula/featurebase/v3/idk" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/idk" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/tls.go b/idk/tls.go index 547c5a4f0..a91c8c079 100644 --- a/idk/tls.go +++ b/idk/tls.go @@ -10,7 +10,7 @@ import ( "sync" "syscall" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/idk/util.go b/idk/util.go index 3e7b3b046..e75afa41d 100644 --- a/idk/util.go +++ b/idk/util.go @@ -1,7 +1,7 @@ package idk import ( - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/pql" ) func scaledStringToInt(scale int64, num string) (int64, error) { diff --git a/index.go b/index.go index 209d2c133..2c17e4928 100644 --- a/index.go +++ b/index.go @@ -13,11 +13,11 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/testhook" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/index_internal_test.go b/index_internal_test.go index 058ee38d0..44afe8b94 100644 --- a/index_internal_test.go +++ b/index_internal_test.go @@ -5,7 +5,7 @@ package pilosa import ( "testing" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) // mustOpenIndex returns a new, opened index at a temporary path. Panic on error. diff --git a/index_test.go b/index_test.go index 5598c73b6..3b81e7067 100644 --- a/index_test.go +++ b/index_test.go @@ -11,11 +11,11 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/testhook" "github.com/pkg/errors" ) diff --git a/ingest/codec_test.go b/ingest/codec_test.go index 17041be94..7c9652f6a 100644 --- a/ingest/codec_test.go +++ b/ingest/codec_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) func TestStableTranslator(t *testing.T) { diff --git a/ingest/op.go b/ingest/op.go index 09372954f..925f1dbed 100644 --- a/ingest/op.go +++ b/ingest/op.go @@ -8,7 +8,7 @@ import ( "math/bits" "sort" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) type OpType uint8 diff --git a/ingest/op_test.go b/ingest/op_test.go index 320e9e880..c542df188 100644 --- a/ingest/op_test.go +++ b/ingest/op_test.go @@ -6,7 +6,7 @@ import ( "math/rand" "testing" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) type opShardingTestCase struct { diff --git a/ingest/update.go b/ingest/update.go index eda5341fc..0df8e9349 100644 --- a/ingest/update.go +++ b/ingest/update.go @@ -3,7 +3,7 @@ package ingest import ( - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" ) // ShardUpdate is an update request for a shard. diff --git a/ingest_test.go b/ingest_test.go index 3598241ed..044ab0cda 100644 --- a/ingest_test.go +++ b/ingest_test.go @@ -13,9 +13,9 @@ import ( "strings" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/test" "github.com/pkg/errors" ) diff --git a/internal/clustertests/cluster_test.go b/internal/clustertests/cluster_test.go index 7c99349cf..dfbb9b226 100644 --- a/internal/clustertests/cluster_test.go +++ b/internal/clustertests/cluster_test.go @@ -16,11 +16,11 @@ import ( "time" "github.com/golang-jwt/jwt" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/ctl" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/ctl" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/internal/clustertests/docker-compose-replication2.yml b/internal/clustertests/docker-compose-replication2.yml index d17bb0aa2..90249ae42 100644 --- a/internal/clustertests/docker-compose-replication2.yml +++ b/internal/clustertests/docker-compose-replication2.yml @@ -47,6 +47,6 @@ services: volumes: - /var/run/docker.sock:/var/run/docker.sock command: - - "go test -v -count=1 github.com/molecula/featurebase/internal/clustertests" + - "go test -v -count=1 github.com/featurebasedb/featurebase/internal/clustertests" networks: pilosanet: diff --git a/internal/clustertests/docker-compose.yml b/internal/clustertests/docker-compose.yml index 0a4d526b6..e04c4b657 100644 --- a/internal/clustertests/docker-compose.yml +++ b/internal/clustertests/docker-compose.yml @@ -18,7 +18,7 @@ services: volumes: - ./results:/results command: - - "cd /go/src/github.com/molecula/featurebase/cmd/featurebase && /featurebase -test.run=TestRunMain -test.coverprofile=/results/coverage-server1.out server --bind pilosa1:10101 ${CLUSTERTESTS_FB_ARGS}" + - "cd /go/src/github.com/featurebasedb/featurebase/cmd/featurebase && /featurebase -test.run=TestRunMain -test.coverprofile=/results/coverage-server1.out server --bind pilosa1:10101 ${CLUSTERTESTS_FB_ARGS}" pilosa2: build: context: ../.. @@ -37,7 +37,7 @@ services: volumes: - ./results:/results command: - - "cd /go/src/github.com/molecula/featurebase/cmd/featurebase && /featurebase -test.run=TestRunMain -test.coverprofile=/results/coverage-server2.out server --bind pilosa2:10101 ${CLUSTERTESTS_FB_ARGS}" + - "cd /go/src/github.com/featurebasedb/featurebase/cmd/featurebase && /featurebase -test.run=TestRunMain -test.coverprofile=/results/coverage-server2.out server --bind pilosa2:10101 ${CLUSTERTESTS_FB_ARGS}" pilosa3: build: context: ../.. @@ -56,7 +56,7 @@ services: volumes: - ./results:/results command: - - "cd /go/src/github.com/molecula/featurebase/cmd/featurebase && /featurebase -test.run=TestRunMain -test.coverprofile=/results/coverage-server3.out server --bind pilosa3:10101 ${CLUSTERTESTS_FB_ARGS}" + - "cd /go/src/github.com/featurebasedb/featurebase/cmd/featurebase && /featurebase -test.run=TestRunMain -test.coverprofile=/results/coverage-server3.out server --bind pilosa3:10101 ${CLUSTERTESTS_FB_ARGS}" client1: build: context: ../.. @@ -77,7 +77,7 @@ services: - /var/run/docker.sock:/var/run/docker.sock - ./results:/results command: - - "cd /go/src/github.com/molecula/featurebase/ && go test -mod=vendor -v -count=1 -covermode=atomic -coverprofile=/results/coverage-clustertests.out -coverpkg=./... -json github.com/molecula/featurebase/v3/internal/clustertests | tee /results/report-clustertests.out" + - "cd /go/src/github.com/featurebasedb/featurebase/ && go test -mod=vendor -v -count=1 -covermode=atomic -coverprofile=/results/coverage-clustertests.out -coverpkg=./... -json github.com/featurebasedb/featurebase/v3/internal/clustertests | tee /results/report-clustertests.out" fakeidp: build: context: . diff --git a/internal/clustertests/pause_node_test.go b/internal/clustertests/pause_node_test.go index 569553ef2..21f87cf76 100644 --- a/internal/clustertests/pause_node_test.go +++ b/internal/clustertests/pause_node_test.go @@ -15,12 +15,12 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - boltdb "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/net" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + boltdb "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/net" "github.com/pkg/errors" ) diff --git a/internal/clustertests/testdata/featurebase.conf b/internal/clustertests/testdata/featurebase.conf index e71ac5a9c..1e93ac849 100644 --- a/internal/clustertests/testdata/featurebase.conf +++ b/internal/clustertests/testdata/featurebase.conf @@ -276,8 +276,8 @@ # Suffix should contain .crt or .pem [tls] - certificate = "/go/src/github.com/molecula/featurebase/internal/clustertests/testdata/certs/localhost.crt" - key = "/go/src/github.com/molecula/featurebase/internal/clustertests/testdata/certs/localhost.key" + certificate = "/go/src/github.com/featurebasedb/featurebase/internal/clustertests/testdata/certs/localhost.crt" + key = "/go/src/github.com/featurebasedb/featurebase/internal/clustertests/testdata/certs/localhost.key" # ============================================================================== # Tracing Section @@ -356,6 +356,6 @@ logout-url = "https://login.microsoftonline.com/common/oauth2/v2.0/logout" scopes = ["https://graph.microsoft.com/.default", "offline_access"] secret-key = "DEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEF" - permissions = "/go/src/github.com/molecula/featurebase/internal/clustertests/testdata/permissions.yaml" + permissions = "/go/src/github.com/featurebasedb/featurebase/internal/clustertests/testdata/permissions.yaml" query-log-path = "query-log-test.log" redirect-base-url = "https://localhost:10101" diff --git a/internal/test/querygenerator.go b/internal/test/querygenerator.go index 271253880..a9460a268 100644 --- a/internal/test/querygenerator.go +++ b/internal/test/querygenerator.go @@ -7,7 +7,7 @@ import ( "strconv" "strings" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/pql" ) type Args map[string]interface{} diff --git a/internal/test/querygenerator_test.go b/internal/test/querygenerator_test.go index 3494ffe0b..bc4672fda 100644 --- a/internal/test/querygenerator_test.go +++ b/internal/test/querygenerator_test.go @@ -5,7 +5,7 @@ package test import ( "testing" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/pql" ) func TestPQL_Generator(t *testing.T) { diff --git a/internal_client.go b/internal_client.go index 705b850fe..43a918512 100644 --- a/internal_client.go +++ b/internal_client.go @@ -21,12 +21,12 @@ import ( "time" "github.com/hashicorp/go-retryablehttp" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/logger" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/logger" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/tracing" "github.com/pkg/errors" "golang.org/x/oauth2" ) diff --git a/internal_client_test.go b/internal_client_test.go index 13bde661b..6e1306e91 100644 --- a/internal_client_test.go +++ b/internal_client_test.go @@ -15,14 +15,14 @@ import ( "time" "github.com/davecgh/go-spew/spew" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/vprint" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" "github.com/ricochet2200/go-disk-usage/du" ) diff --git a/iterator.go b/iterator.go index 1683f370a..abca0be3e 100644 --- a/iterator.go +++ b/iterator.go @@ -5,7 +5,7 @@ package pilosa import ( "fmt" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" ) // iterator is an interface for looping over row/column pairs. diff --git a/logger/filewriter_test.go b/logger/filewriter_test.go index 9d493cce0..a731536a5 100644 --- a/logger/filewriter_test.go +++ b/logger/filewriter_test.go @@ -30,7 +30,7 @@ import ( "os" "testing" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) // TestReopenAppend -- make sure we always append to an existing file diff --git a/logger/logger.go b/logger/logger.go index 90dcfa17a..0fbbf0d2b 100644 --- a/logger/logger.go +++ b/logger/logger.go @@ -11,7 +11,7 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/monitor" + "github.com/featurebasedb/featurebase/v3/monitor" ) const RFC3339UsecTz0 = "2006-01-02T15:04:05.000000Z07:00" diff --git a/main_test.go b/main_test.go index 3a543caf5..e49f10ce8 100644 --- a/main_test.go +++ b/main_test.go @@ -10,7 +10,7 @@ import ( "net/http" _ "net/http/pprof" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) func TestMain(m *testing.M) { diff --git a/mock/translator.go b/mock/translator.go index 2a167c468..4bff79edb 100644 --- a/mock/translator.go +++ b/mock/translator.go @@ -6,7 +6,7 @@ import ( "context" "io" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" ) type TranslateStore struct { diff --git a/pg/pgtest/handler.go b/pg/pgtest/handler.go index 4ec256d43..9a35c0fdd 100644 --- a/pg/pgtest/handler.go +++ b/pg/pgtest/handler.go @@ -8,7 +8,7 @@ import ( "fmt" "strings" - "github.com/molecula/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/pg" ) // HandlerFunc implements a postgres query handler with a function. diff --git a/pg/pgtest/server.go b/pg/pgtest/server.go index f58a2a389..ed59ac037 100644 --- a/pg/pgtest/server.go +++ b/pg/pgtest/server.go @@ -8,7 +8,7 @@ import ( "net" "testing" - "github.com/molecula/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/pg" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/pg/pgtest/tls.go b/pg/pgtest/tls.go index c0dbd18f1..848843292 100644 --- a/pg/pgtest/tls.go +++ b/pg/pgtest/tls.go @@ -13,7 +13,7 @@ import ( "math/big" "time" - "github.com/molecula/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/pg" "github.com/pkg/errors" ) diff --git a/pg/protocol.go b/pg/protocol.go index b787a54fe..db250ed8b 100644 --- a/pg/protocol.go +++ b/pg/protocol.go @@ -18,8 +18,8 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/pg/message" - "github.com/molecula/featurebase/v3/sql" + "github.com/featurebasedb/featurebase/v3/pg/message" + "github.com/featurebasedb/featurebase/v3/sql" "github.com/pkg/errors" "vitess.io/vitess/go/vt/sqlparser" ) diff --git a/pg/query.go b/pg/query.go index ca12d0cf1..e514de951 100644 --- a/pg/query.go +++ b/pg/query.go @@ -6,7 +6,7 @@ import ( "context" "fmt" - "github.com/molecula/featurebase/v3/pg/message" + "github.com/featurebasedb/featurebase/v3/pg/message" "github.com/pkg/errors" ) diff --git a/pg/server.go b/pg/server.go index 900b96740..ef9bab059 100644 --- a/pg/server.go +++ b/pg/server.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) // Server is a postgres wire protocol server. diff --git a/pg/server_test.go b/pg/server_test.go index bf98169ba..19b84cd79 100644 --- a/pg/server_test.go +++ b/pg/server_test.go @@ -16,9 +16,9 @@ import ( "time" "github.com/lib/pq" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/pg" - "github.com/molecula/featurebase/v3/pg/pgtest" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/pg/pgtest" ) // TestStartupTimeout tests that an incoming connection that does nothing times out and gets closed. diff --git a/pg/type.go b/pg/type.go index 6e6830316..672fe8df3 100644 --- a/pg/type.go +++ b/pg/type.go @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 package pg -import "github.com/molecula/featurebase/v3/pg/message" +import "github.com/featurebasedb/featurebase/v3/pg/message" // Type represents a postgres type. type Type struct { diff --git a/pilosa.go b/pilosa.go index 104fb8864..dbfe64377 100644 --- a/pilosa.go +++ b/pilosa.go @@ -6,8 +6,8 @@ import ( "regexp" "time" - "github.com/molecula/featurebase/v3/disco" - pnet "github.com/molecula/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/disco" + pnet "github.com/featurebasedb/featurebase/v3/net" "github.com/pkg/errors" ) diff --git a/pilosa_internal_test.go b/pilosa_internal_test.go index e7d5afd72..76edd6567 100644 --- a/pilosa_internal_test.go +++ b/pilosa_internal_test.go @@ -7,8 +7,8 @@ import ( "reflect" "testing" - "github.com/molecula/featurebase/v3/roaring" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + "github.com/featurebasedb/featurebase/v3/roaring" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) func TestValidateName(t *testing.T) { diff --git a/pilosa_test.go b/pilosa_test.go index d76fce004..0d4264b8f 100644 --- a/pilosa_test.go +++ b/pilosa_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" - pilosa "github.com/molecula/featurebase/v3" - _ "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + _ "github.com/featurebasedb/featurebase/v3/test" ) func TestAddressWithDefaults(t *testing.T) { diff --git a/planner.go b/planner.go index ad2dcf6ba..ce10a1b01 100644 --- a/planner.go +++ b/planner.go @@ -9,8 +9,8 @@ import ( "strconv" "strings" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/sql2" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/sql2" ) type Planner struct { diff --git a/planner_test.go b/planner_test.go index 3a6227554..3ef87b87d 100644 --- a/planner_test.go +++ b/planner_test.go @@ -8,8 +8,8 @@ import ( "testing" "github.com/google/go-cmp/cmp" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/test" ) func TestPlanner_Count(t *testing.T) { diff --git a/pprof.go b/pprof.go index 5c5526491..59657d602 100644 --- a/pprof.go +++ b/pprof.go @@ -11,8 +11,8 @@ import ( _ "net/http/pprof" // Imported for its side-effect of registering pprof endpoints with the server. - "github.com/molecula/featurebase/v3/storage" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/vprint" ) // CPUProfileForDur (where "Dur" is short for "Duration"), is used for diff --git a/pql/ast_test.go b/pql/ast_test.go index 08f0df333..ce0ee7e7a 100644 --- a/pql/ast_test.go +++ b/pql/ast_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/pql" ) // Ensure call can be converted into a string. diff --git a/pql/decimal_test.go b/pql/decimal_test.go index 30fb7b0ac..c9689e630 100644 --- a/pql/decimal_test.go +++ b/pql/decimal_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/pql" ) // Ensure call can be converted into a string. diff --git a/pql/parser_test.go b/pql/parser_test.go index b48128d23..9c5e2ec55 100644 --- a/pql/parser_test.go +++ b/pql/parser_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/pql" - _ "github.com/molecula/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/pql" + _ "github.com/featurebasedb/featurebase/v3/test" ) // Ensure the parser can parse PQL. diff --git a/prometheus/prometheus.go b/prometheus/prometheus.go index cfdd779ee..c0ff864a9 100644 --- a/prometheus/prometheus.go +++ b/prometheus/prometheus.go @@ -8,8 +8,8 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/stats" "github.com/prometheus/client_golang/prometheus" ) diff --git a/prometheus/prometheus_test.go b/prometheus/prometheus_test.go index 11266d463..3eaca7842 100644 --- a/prometheus/prometheus_test.go +++ b/prometheus/prometheus_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - pilosaPrometheus "github.com/molecula/featurebase/v3/prometheus" + pilosaPrometheus "github.com/featurebasedb/featurebase/v3/prometheus" "github.com/prometheus/client_golang/prometheus" io_prometheus_client "github.com/prometheus/client_model/go" ) diff --git a/proto/vdsm/vdsm.pb.go b/proto/vdsm/vdsm.pb.go index 6390f80dd..b99cc5ecc 100644 --- a/proto/vdsm/vdsm.pb.go +++ b/proto/vdsm/vdsm.pb.go @@ -7,7 +7,7 @@ import ( context "context" fmt "fmt" proto "github.com/golang/protobuf/proto" - proto1 "github.com/molecula/featurebase/v3/proto" + proto1 "github.com/featurebasedb/featurebase/v3/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/rbf.go b/rbf.go index 7cef51ad1..97809b1b4 100644 --- a/rbf.go +++ b/rbf.go @@ -10,13 +10,13 @@ import ( "strings" "sync" - "github.com/molecula/featurebase/v3/rbf" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/roaring" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/rbf" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/roaring" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/storage" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" ) diff --git a/rbf/array.go b/rbf/array.go index cd19997ec..dd93f192d 100644 --- a/rbf/array.go +++ b/rbf/array.go @@ -5,7 +5,7 @@ package rbf import ( "unsafe" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" ) // toArray16 converts a byte slice into a slice of uint16 values using unsafe. diff --git a/rbf/cfg/cfg.go b/rbf/cfg/cfg.go index 6c4da108d..3c5134b70 100644 --- a/rbf/cfg/cfg.go +++ b/rbf/cfg/cfg.go @@ -3,7 +3,7 @@ package cfg import ( - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/spf13/pflag" ) diff --git a/rbf/cursor.go b/rbf/cursor.go index 76d97ad26..0b92b062f 100644 --- a/rbf/cursor.go +++ b/rbf/cursor.go @@ -9,7 +9,7 @@ import ( "sort" "unsafe" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" ) diff --git a/rbf/cursor_internal_test.go b/rbf/cursor_internal_test.go index 00bf9b69f..f05f0ff90 100644 --- a/rbf/cursor_internal_test.go +++ b/rbf/cursor_internal_test.go @@ -7,8 +7,8 @@ import ( "fmt" "testing" - "github.com/molecula/featurebase/v3/roaring" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + "github.com/featurebasedb/featurebase/v3/roaring" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) func getRoaringIter(bitsToSet ...uint64) roaring.RoaringIterator { diff --git a/rbf/cursor_test.go b/rbf/cursor_test.go index 6fe279040..1a5914c2c 100644 --- a/rbf/cursor_test.go +++ b/rbf/cursor_test.go @@ -13,8 +13,8 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/rbf" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/rbf" + "github.com/featurebasedb/featurebase/v3/roaring" ) func TestCursor_FirstNext(t *testing.T) { diff --git a/rbf/cursorx.go b/rbf/cursorx.go index 383e23c2f..a3f2b561c 100644 --- a/rbf/cursorx.go +++ b/rbf/cursorx.go @@ -9,7 +9,7 @@ import ( "math" "os" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" ) diff --git a/rbf/db.go b/rbf/db.go index 90a0b0415..93e719d5e 100644 --- a/rbf/db.go +++ b/rbf/db.go @@ -16,9 +16,9 @@ import ( "github.com/pkg/errors" "github.com/benbjohnson/immutable" - "github.com/molecula/featurebase/v3/logger" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/syswrap" + "github.com/featurebasedb/featurebase/v3/logger" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/syswrap" ) var ( diff --git a/rbf/db_test.go b/rbf/db_test.go index 206c5aff4..459e0b519 100644 --- a/rbf/db_test.go +++ b/rbf/db_test.go @@ -16,8 +16,8 @@ import ( _ "net/http/pprof" "github.com/felixge/fgprof" - "github.com/molecula/featurebase/v3/rbf" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/rbf" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" "golang.org/x/sync/errgroup" ) diff --git a/rbf/ingest_test.go b/rbf/ingest_test.go index c2b05e640..14fb8c266 100644 --- a/rbf/ingest_test.go +++ b/rbf/ingest_test.go @@ -13,12 +13,12 @@ import ( //"time" - "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/testhook" - txkey "github.com/molecula/featurebase/v3/short_txkey" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) func rbfName(index, field, view string, shard uint64) string { diff --git a/rbf/rbf.go b/rbf/rbf.go index 5f5229a57..df74ac4ad 100644 --- a/rbf/rbf.go +++ b/rbf/rbf.go @@ -16,9 +16,9 @@ import ( "unsafe" "github.com/benbjohnson/immutable" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/shardwidth" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/vprint" ) const ( diff --git a/rbf/rbf_test.go b/rbf/rbf_test.go index 9899fd93e..6aafa62b7 100644 --- a/rbf/rbf_test.go +++ b/rbf/rbf_test.go @@ -12,10 +12,10 @@ import ( "sort" "testing" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/rbf" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/rbf" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/testhook" ) var quickCheckN *int = flag.Int("quickchecks", 10, "The number of iterations for each quickcheck") diff --git a/rbf/tx.go b/rbf/tx.go index e9fb61f8c..78d37b988 100644 --- a/rbf/tx.go +++ b/rbf/tx.go @@ -12,9 +12,9 @@ import ( "sync" "github.com/benbjohnson/immutable" - "github.com/molecula/featurebase/v3/roaring" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/roaring" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" ) diff --git a/rbf/tx_test.go b/rbf/tx_test.go index 2112d380a..1e840e1ae 100644 --- a/rbf/tx_test.go +++ b/rbf/tx_test.go @@ -14,8 +14,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/rbf" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/rbf" + "github.com/featurebasedb/featurebase/v3/roaring" ) func TestTx_CommitRollback(t *testing.T) { diff --git a/rbf/util.go b/rbf/util.go index 63529886a..cd01602ea 100644 --- a/rbf/util.go +++ b/rbf/util.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/vprint" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/vprint" ) // we don't currently use dumpAllPages but it's tricky enough to get right diff --git a/rbf/util_test.go b/rbf/util_test.go index b083ccf27..4d4365209 100644 --- a/rbf/util_test.go +++ b/rbf/util_test.go @@ -8,9 +8,9 @@ import ( "os" "testing" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/testhook" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/testhook" ) // util_test adds reusable utilities for testing. diff --git a/roaring/benchpretty/main.go b/roaring/benchpretty/main.go index b0334ee78..9ed8e6631 100644 --- a/roaring/benchpretty/main.go +++ b/roaring/benchpretty/main.go @@ -12,7 +12,7 @@ import ( "strconv" "strings" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" ) var pattern = regexp.MustCompile(`^BenchmarkCtOps/([^/]+)/([^/]+)/([^-]+)-([0-9]+)\s*([0-9]+)\s*([0-9.]+) ns/op`) diff --git a/roaring/filter.go b/roaring/filter.go index 12c5cee68..c7a37ee1b 100644 --- a/roaring/filter.go +++ b/roaring/filter.go @@ -8,7 +8,7 @@ import ( "github.com/pkg/errors" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) // We want BitmapScanner to be accessible from both the pilosa package, and diff --git a/roaring/filter_internal_test.go b/roaring/filter_internal_test.go index f5a7e9b56..acc490ca8 100644 --- a/roaring/filter_internal_test.go +++ b/roaring/filter_internal_test.go @@ -10,7 +10,7 @@ import ( "sync" "testing" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) // For each container key i from 1 to (shard width in containers), we diff --git a/roaring/printutil.go b/roaring/printutil.go index 786953054..b8401d17c 100644 --- a/roaring/printutil.go +++ b/roaring/printutil.go @@ -6,7 +6,7 @@ import ( "fmt" "math" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) func (b *Bitmap) String() (r string) { diff --git a/roaring/printutil_test.go b/roaring/printutil_test.go index 2aca8d2a2..625323d85 100644 --- a/roaring/printutil_test.go +++ b/roaring/printutil_test.go @@ -6,7 +6,7 @@ import ( "fmt" "testing" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) func TestAsContainerMatrixString(t *testing.T) { diff --git a/roaring/roaring_internal_test.go b/roaring/roaring_internal_test.go index 0b8647285..3d08ee833 100644 --- a/roaring/roaring_internal_test.go +++ b/roaring/roaring_internal_test.go @@ -13,7 +13,7 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/generator" + "github.com/featurebasedb/featurebase/v3/generator" "github.com/pkg/errors" ) diff --git a/roaring/roaring_stats.go b/roaring/roaring_stats.go index 8d0240304..b1218f757 100644 --- a/roaring/roaring_stats.go +++ b/roaring/roaring_stats.go @@ -6,7 +6,7 @@ package roaring import ( - "github.com/molecula/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/stats" ) var statsEv = stats.NewExpvarStatsClient() diff --git a/roaring/roaring_test.go b/roaring/roaring_test.go index 7baecadf5..c4373f93e 100644 --- a/roaring/roaring_test.go +++ b/roaring/roaring_test.go @@ -12,10 +12,10 @@ import ( "testing/quick" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/generator" - "github.com/molecula/featurebase/v3/roaring" - _ "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/generator" + "github.com/featurebasedb/featurebase/v3/roaring" + _ "github.com/featurebasedb/featurebase/v3/test" ) func TestContainerCount(t *testing.T) { diff --git a/row.go b/row.go index 32dcf0c4b..941bc67eb 100644 --- a/row.go +++ b/row.go @@ -6,8 +6,8 @@ import ( "encoding/json" "sort" - pb "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/roaring" + pb "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" ) diff --git a/row_test.go b/row_test.go index b8e4fd9e9..dfea01fcf 100644 --- a/row_test.go +++ b/row_test.go @@ -7,7 +7,7 @@ import ( "reflect" "testing" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" ) // Ensure a row can be merged diff --git a/server.go b/server.go index 388100a5b..77ac2cafd 100644 --- a/server.go +++ b/server.go @@ -17,14 +17,14 @@ import ( uuid "github.com/satori/go.uuid" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/logger" - pnet "github.com/molecula/featurebase/v3/net" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/sql2" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/logger" + pnet "github.com/featurebasedb/featurebase/v3/net" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/sql2" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/storage" "github.com/pkg/errors" "golang.org/x/sync/errgroup" diff --git a/server/cluster_test.go b/server/cluster_test.go index 320134e49..82c0992fb 100644 --- a/server/cluster_test.go +++ b/server/cluster_test.go @@ -9,10 +9,10 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" ) // Ensure program can send/receive broadcast messages. diff --git a/server/config.go b/server/config.go index a4f70fe96..8505babde 100644 --- a/server/config.go +++ b/server/config.go @@ -16,11 +16,11 @@ import ( "strings" "time" - "github.com/molecula/featurebase/v3/authz" - petcd "github.com/molecula/featurebase/v3/etcd" - rbfcfg "github.com/molecula/featurebase/v3/rbf/cfg" - "github.com/molecula/featurebase/v3/storage" - "github.com/molecula/featurebase/v3/toml" + "github.com/featurebasedb/featurebase/v3/authz" + petcd "github.com/featurebasedb/featurebase/v3/etcd" + rbfcfg "github.com/featurebasedb/featurebase/v3/rbf/cfg" + "github.com/featurebasedb/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/toml" "github.com/pkg/errors" ) diff --git a/server/config_test.go b/server/config_test.go index 216fc60ad..f180211d3 100644 --- a/server/config_test.go +++ b/server/config_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/toml" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/toml" ) func Test_ValidateConfig(t *testing.T) { diff --git a/server/grpc.go b/server/grpc.go index d41391bb7..15f59c173 100644 --- a/server/grpc.go +++ b/server/grpc.go @@ -14,16 +14,16 @@ import ( "time" "github.com/improbable-eng/grpc-web/go/grpcweb" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/authz" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/monitor" - "github.com/molecula/featurebase/v3/pql" - pb "github.com/molecula/featurebase/v3/proto" - vdsm_pb "github.com/molecula/featurebase/v3/proto/vdsm" - "github.com/molecula/featurebase/v3/sql" - "github.com/molecula/featurebase/v3/stats" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/authz" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/monitor" + "github.com/featurebasedb/featurebase/v3/pql" + pb "github.com/featurebasedb/featurebase/v3/proto" + vdsm_pb "github.com/featurebasedb/featurebase/v3/proto/vdsm" + "github.com/featurebasedb/featurebase/v3/sql" + "github.com/featurebasedb/featurebase/v3/stats" "github.com/pkg/errors" "google.golang.org/grpc" "google.golang.org/grpc/codes" diff --git a/server/grpc_internal_test.go b/server/grpc_internal_test.go index bb98bd4f9..053892a62 100644 --- a/server/grpc_internal_test.go +++ b/server/grpc_internal_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/logger" "google.golang.org/grpc" "google.golang.org/grpc/metadata" ) diff --git a/server/grpc_test.go b/server/grpc_test.go index 980c748f8..082be2e80 100644 --- a/server/grpc_test.go +++ b/server/grpc_test.go @@ -17,16 +17,16 @@ import ( "time" "github.com/golang-jwt/jwt" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/authz" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/pql" - pb "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/sql" - "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/vprint" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/authz" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/pql" + pb "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/sql" + "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" "google.golang.org/grpc" "google.golang.org/grpc/codes" diff --git a/server/handler_test.go b/server/handler_test.go index 626995d61..24ef4d82a 100644 --- a/server/handler_test.go +++ b/server/handler_test.go @@ -19,12 +19,12 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" ) func TestHandler_PostSchemaCluster(t *testing.T) { diff --git a/server/pg.go b/server/pg.go index 9d04384fc..e30ce083b 100644 --- a/server/pg.go +++ b/server/pg.go @@ -13,14 +13,14 @@ import ( "strings" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/pg" - "github.com/molecula/featurebase/v3/sql2" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/sql2" - //"github.com/molecula/featurebase/v3/pg" - "github.com/molecula/featurebase/v3/pql" - pb "github.com/molecula/featurebase/v3/proto" + //"github.com/featurebasedb/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/pql" + pb "github.com/featurebasedb/featurebase/v3/proto" "github.com/pkg/errors" "golang.org/x/sync/errgroup" diff --git a/server/pg_internal_test.go b/server/pg_internal_test.go index f0fca7d74..d52b4e21a 100644 --- a/server/pg_internal_test.go +++ b/server/pg_internal_test.go @@ -5,8 +5,8 @@ package server import ( "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/pg" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/pg" ) // pg_internal_test.go tests unexported methods from server/pg.go diff --git a/server/pg_test.go b/server/pg_test.go index 36d88935a..ee75def2a 100644 --- a/server/pg_test.go +++ b/server/pg_test.go @@ -9,12 +9,12 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/pg" - "github.com/molecula/featurebase/v3/pg/pgtest" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/pg" + "github.com/featurebasedb/featurebase/v3/pg/pgtest" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" ) func TestPostgresHandler(t *testing.T) { diff --git a/server/server.go b/server/server.go index fc31348b8..b8b9ca81e 100644 --- a/server/server.go +++ b/server/server.go @@ -29,22 +29,22 @@ import ( "golang.org/x/sync/errgroup" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/authn" - "github.com/molecula/featurebase/v3/authz" - "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/encoding/proto" - petcd "github.com/molecula/featurebase/v3/etcd" - "github.com/molecula/featurebase/v3/gcnotify" - "github.com/molecula/featurebase/v3/gopsutil" - "github.com/molecula/featurebase/v3/logger" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/prometheus" - "github.com/molecula/featurebase/v3/statik" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/statsd" - "github.com/molecula/featurebase/v3/syswrap" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/authn" + "github.com/featurebasedb/featurebase/v3/authz" + "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + petcd "github.com/featurebasedb/featurebase/v3/etcd" + "github.com/featurebasedb/featurebase/v3/gcnotify" + "github.com/featurebasedb/featurebase/v3/gopsutil" + "github.com/featurebasedb/featurebase/v3/logger" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/prometheus" + "github.com/featurebasedb/featurebase/v3/statik" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/statsd" + "github.com/featurebasedb/featurebase/v3/syswrap" + "github.com/featurebasedb/featurebase/v3/testhook" "github.com/pelletier/go-toml" "github.com/pkg/errors" ) diff --git a/server/server_test.go b/server/server_test.go index cd643403f..e06955884 100644 --- a/server/server_test.go +++ b/server/server_test.go @@ -18,14 +18,14 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/testhook" "github.com/pkg/errors" "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" diff --git a/server/sql.go b/server/sql.go index 1940eb171..b6dec04c8 100644 --- a/server/sql.go +++ b/server/sql.go @@ -5,10 +5,10 @@ package server import ( "context" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/logger" - pb "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/sql" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/logger" + pb "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/sql" "github.com/pkg/errors" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/server/tlsconfig.go b/server/tlsconfig.go index 17bc5972e..ab9f3de55 100644 --- a/server/tlsconfig.go +++ b/server/tlsconfig.go @@ -44,7 +44,7 @@ import ( "sync" "syscall" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/server/tlsconfig_test.go b/server/tlsconfig_test.go index 9cc5d3d83..1c69c4874 100644 --- a/server/tlsconfig_test.go +++ b/server/tlsconfig_test.go @@ -6,8 +6,8 @@ import ( "reflect" "testing" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/server" ) func TestGetTLSConfig(t *testing.T) { diff --git a/server/trial.go b/server/trial.go index bfb06b438..74798e5d9 100644 --- a/server/trial.go +++ b/server/trial.go @@ -13,7 +13,7 @@ import ( "time" "github.com/beevik/ntp" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" ) // handleTrialDeadline checks to see if this is a trial version of Molecula that expires at some point. diff --git a/server_internal_test.go b/server_internal_test.go index 2f321dd3c..1b51fbaa7 100644 --- a/server_internal_test.go +++ b/server_internal_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/storage" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/testhook" ) func TestMonitorAntiEntropyZero(t *testing.T) { diff --git a/server_test.go b/server_test.go index e54d76a1e..225df84f8 100644 --- a/server_test.go +++ b/server_test.go @@ -10,8 +10,8 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/test" ) func TestViewsRemovalTTL(t *testing.T) { diff --git a/shardwidth/helper_test.go b/shardwidth/helper_test.go index 429b6bd1b..179ba5847 100644 --- a/shardwidth/helper_test.go +++ b/shardwidth/helper_test.go @@ -6,7 +6,7 @@ import ( "math/rand" "testing" - "github.com/molecula/featurebase/v3/shardwidth" + "github.com/featurebasedb/featurebase/v3/shardwidth" ) type nextShardTestCase struct { diff --git a/sql/ddl.go b/sql/ddl.go index 9077b8362..d98ee5c14 100644 --- a/sql/ddl.go +++ b/sql/ddl.go @@ -6,8 +6,8 @@ import ( "context" "fmt" - pilosa "github.com/molecula/featurebase/v3" - pproto "github.com/molecula/featurebase/v3/proto" + pilosa "github.com/featurebasedb/featurebase/v3" + pproto "github.com/featurebasedb/featurebase/v3/proto" "github.com/pkg/errors" "vitess.io/vitess/go/vt/sqlparser" ) diff --git a/sql/extract.go b/sql/extract.go index 938aef169..73907dcff 100644 --- a/sql/extract.go +++ b/sql/extract.go @@ -9,8 +9,8 @@ import ( "strings" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/pql" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/pql" "github.com/pkg/errors" "vitess.io/vitess/go/vt/sqlparser" ) diff --git a/sql/handler_test.go b/sql/handler_test.go index 5856b57c8..8ac5d56cc 100644 --- a/sql/handler_test.go +++ b/sql/handler_test.go @@ -7,9 +7,9 @@ import ( "math" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/sql" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/sql" + "github.com/featurebasedb/featurebase/v3/test" "vitess.io/vitess/go/vt/sqlparser" ) diff --git a/sql/mapper.go b/sql/mapper.go index 708532a23..cfc2b1cb9 100644 --- a/sql/mapper.go +++ b/sql/mapper.go @@ -5,7 +5,7 @@ package sql import ( "strings" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" "vitess.io/vitess/go/vt/sqlparser" ) diff --git a/sql/model.go b/sql/model.go index 62faa11a6..9988a11ff 100644 --- a/sql/model.go +++ b/sql/model.go @@ -5,7 +5,7 @@ package sql import ( "fmt" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" "github.com/pkg/errors" ) diff --git a/sql/reduce.go b/sql/reduce.go index 843318277..69ec62f40 100644 --- a/sql/reduce.go +++ b/sql/reduce.go @@ -5,9 +5,9 @@ package sql import ( "sort" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/pql" - pproto "github.com/molecula/featurebase/v3/proto" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/pql" + pproto "github.com/featurebasedb/featurebase/v3/proto" "github.com/pkg/errors" ) diff --git a/sql/reduce_test.go b/sql/reduce_test.go index 1ef4557e4..19d5d8d4e 100644 --- a/sql/reduce_test.go +++ b/sql/reduce_test.go @@ -7,7 +7,7 @@ import ( "reflect" "testing" - pproto "github.com/molecula/featurebase/v3/proto" + pproto "github.com/featurebasedb/featurebase/v3/proto" "github.com/pkg/errors" ) diff --git a/sql/select.go b/sql/select.go index ff9479e12..a3ad269dd 100644 --- a/sql/select.go +++ b/sql/select.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/pql" - pproto "github.com/molecula/featurebase/v3/proto" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/pql" + pproto "github.com/featurebasedb/featurebase/v3/proto" "github.com/pkg/errors" "vitess.io/vitess/go/vt/sqlparser" ) diff --git a/sql/show.go b/sql/show.go index 69789062a..66d17d0c6 100644 --- a/sql/show.go +++ b/sql/show.go @@ -6,8 +6,8 @@ import ( "context" "fmt" - pilosa "github.com/molecula/featurebase/v3" - pproto "github.com/molecula/featurebase/v3/proto" + pilosa "github.com/featurebasedb/featurebase/v3" + pproto "github.com/featurebasedb/featurebase/v3/proto" "github.com/pkg/errors" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/sql2/ast_test.go b/sql2/ast_test.go index e74bbfe9b..2a8dc28d7 100644 --- a/sql2/ast_test.go +++ b/sql2/ast_test.go @@ -8,7 +8,7 @@ import ( "testing" "github.com/go-test/deep" - sql "github.com/molecula/featurebase/v3/sql2" + sql "github.com/featurebasedb/featurebase/v3/sql2" ) func TestExprString(t *testing.T) { diff --git a/sql2/parser_test.go b/sql2/parser_test.go index 64f29b398..a893c016c 100644 --- a/sql2/parser_test.go +++ b/sql2/parser_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/go-test/deep" - sql "github.com/molecula/featurebase/v3/sql2" + sql "github.com/featurebasedb/featurebase/v3/sql2" ) func TestParser_ParseStatement(t *testing.T) { diff --git a/sql2/scanner_test.go b/sql2/scanner_test.go index 5b5fdc6bd..aa315b998 100644 --- a/sql2/scanner_test.go +++ b/sql2/scanner_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - sql "github.com/molecula/featurebase/v3/sql2" + sql "github.com/featurebasedb/featurebase/v3/sql2" ) func TestScanner_Scan(t *testing.T) { diff --git a/sql2/token_test.go b/sql2/token_test.go index c27953d97..4b71f5e62 100644 --- a/sql2/token_test.go +++ b/sql2/token_test.go @@ -5,7 +5,7 @@ package sql2_test import ( "testing" - sql "github.com/molecula/featurebase/v3/sql2" + sql "github.com/featurebasedb/featurebase/v3/sql2" ) func TestPos_String(t *testing.T) { diff --git a/statik/filesystem.go b/statik/filesystem.go index 99e8c057a..96cb20601 100644 --- a/statik/filesystem.go +++ b/statik/filesystem.go @@ -10,7 +10,7 @@ package statik import ( "net/http" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" "github.com/rakyll/statik/fs" ) diff --git a/stats/stats.go b/stats/stats.go index 9f591e3e3..d85b900fd 100644 --- a/stats/stats.go +++ b/stats/stats.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" ) // Expvar global expvar map. diff --git a/stats/stats_test.go b/stats/stats_test.go index fb131a2b6..06f6f8de3 100644 --- a/stats/stats_test.go +++ b/stats/stats_test.go @@ -10,10 +10,10 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/test" ) // TestMultiStatClient_Expvar run the multistat client with exp var diff --git a/statsd/statsd.go b/statsd/statsd.go index a6e986827..8a6900ab3 100644 --- a/statsd/statsd.go +++ b/statsd/statsd.go @@ -7,8 +7,8 @@ import ( "time" "github.com/DataDog/datadog-go/statsd" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/stats" ) // StatsD protocol wrapper using the DataDog library that added Tags to the StatsD protocol diff --git a/statsd/statsd_test.go b/statsd/statsd_test.go index a5c1022bf..dcb855205 100644 --- a/statsd/statsd_test.go +++ b/statsd/statsd_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/statsd" - _ "github.com/molecula/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/statsd" + _ "github.com/featurebasedb/featurebase/v3/test" ) func TestStatsClient_WithTags(t *testing.T) { diff --git a/stattx.go b/stattx.go index d4d894758..08457a5e5 100644 --- a/stattx.go +++ b/stattx.go @@ -10,11 +10,11 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/debugstats" - "github.com/molecula/featurebase/v3/roaring" - txkey "github.com/molecula/featurebase/v3/short_txkey" - "github.com/molecula/featurebase/v3/storage" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/debugstats" + "github.com/featurebasedb/featurebase/v3/roaring" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + "github.com/featurebasedb/featurebase/v3/storage" + "github.com/featurebasedb/featurebase/v3/vprint" ) // statTx is useful to profile on a diff --git a/test/cluster.go b/test/cluster.go index a0f086a5c..5c66b9b2d 100644 --- a/test/cluster.go +++ b/test/cluster.go @@ -11,14 +11,14 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/api/client" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/etcd" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/proto" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/storage" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/api/client" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/etcd" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/proto" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/storage" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/test/disco.go b/test/disco.go index d139cb70e..ad6292c40 100644 --- a/test/disco.go +++ b/test/disco.go @@ -8,8 +8,8 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/etcd" - "github.com/molecula/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/etcd" + "github.com/featurebasedb/featurebase/v3/server" "github.com/pkg/errors" ) diff --git a/test/field.go b/test/field.go index 6639111d1..105edd221 100644 --- a/test/field.go +++ b/test/field.go @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 package test -import pilosa "github.com/molecula/featurebase/v3" +import pilosa "github.com/featurebasedb/featurebase/v3" // Field represents a test wrapper for pilosa.Field. type Field struct { diff --git a/test/holder.go b/test/holder.go index c58c2d673..c755ac18c 100644 --- a/test/holder.go +++ b/test/holder.go @@ -7,10 +7,10 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/vprint" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" ) diff --git a/test/index.go b/test/index.go index 6ca5fd5dc..27466c9a6 100644 --- a/test/index.go +++ b/test/index.go @@ -6,8 +6,8 @@ import ( "context" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/testhook" ) // Index represents a test wrapper for pilosa.Index. diff --git a/test/pilosa.go b/test/pilosa.go index 60c40f737..48a6cebd6 100644 --- a/test/pilosa.go +++ b/test/pilosa.go @@ -14,11 +14,11 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/encoding/proto" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/testhook" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/encoding/proto" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/testhook" ) //////////////////////////////////////////////////////////////////////////////////// diff --git a/test/pilosa_test.go b/test/pilosa_test.go index f06a49ecc..6a178098b 100644 --- a/test/pilosa_test.go +++ b/test/pilosa_test.go @@ -9,8 +9,8 @@ import ( "strings" "testing" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/test" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/test" ) func TestNewCluster(t *testing.T) { diff --git a/test/transaction.go b/test/transaction.go index 7f7b7f957..2f91ff7d1 100644 --- a/test/transaction.go +++ b/test/transaction.go @@ -6,7 +6,7 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" + pilosa "github.com/featurebasedb/featurebase/v3" ) const deadlineSkew = time.Second diff --git a/testhook/auditor_test.go b/testhook/auditor_test.go index 604e1f3b4..24155dfa4 100644 --- a/testhook/auditor_test.go +++ b/testhook/auditor_test.go @@ -7,7 +7,7 @@ import ( "reflect" "testing" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/testhook" ) func TestAuditor_CatchError(t *testing.T) { diff --git a/tracing/opentracing/opentracing.go b/tracing/opentracing/opentracing.go index 463454b48..e50ba029c 100644 --- a/tracing/opentracing/opentracing.go +++ b/tracing/opentracing/opentracing.go @@ -6,8 +6,8 @@ import ( "context" "net/http" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/tracing" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/tracing" "github.com/opentracing/opentracing-go" "github.com/opentracing/opentracing-go/ext" ) diff --git a/transaction.go b/transaction.go index 2f425ab8f..b98cd26e8 100644 --- a/transaction.go +++ b/transaction.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "github.com/molecula/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/logger" "github.com/pkg/errors" ) diff --git a/transaction_test.go b/transaction_test.go index d9f071597..73024b2fc 100644 --- a/transaction_test.go +++ b/transaction_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/logger" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/logger" + "github.com/featurebasedb/featurebase/v3/test" ) // TestTransactionManager currently uses an in memory transaction diff --git a/translate.go b/translate.go index 8c019a8ed..c40ffb332 100644 --- a/translate.go +++ b/translate.go @@ -11,9 +11,9 @@ import ( "sort" "sync" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/ingest" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/ingest" + "github.com/featurebasedb/featurebase/v3/roaring" "github.com/pkg/errors" ) diff --git a/translator_test.go b/translator_test.go index ad3542500..8feee4aee 100644 --- a/translator_test.go +++ b/translator_test.go @@ -12,12 +12,12 @@ import ( "time" "github.com/google/go-cmp/cmp" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/boltdb" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/mock" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/boltdb" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/mock" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/tx.go b/tx.go index 54c20289c..f85ef2fa9 100644 --- a/tx.go +++ b/tx.go @@ -3,9 +3,9 @@ package pilosa import ( - "github.com/molecula/featurebase/v3/roaring" - txkey "github.com/molecula/featurebase/v3/short_txkey" - //txkey "github.com/molecula/featurebase/v3/txkey" + "github.com/featurebasedb/featurebase/v3/roaring" + txkey "github.com/featurebasedb/featurebase/v3/short_txkey" + //txkey "github.com/featurebasedb/featurebase/v3/txkey" ) // writable initializes Tx that update, use !writable for read-only. diff --git a/tx_internal_test.go b/tx_internal_test.go index b3a3d270f..05efdacae 100644 --- a/tx_internal_test.go +++ b/tx_internal_test.go @@ -7,7 +7,7 @@ import ( "sync" "testing" - "github.com/molecula/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/roaring" ) const countRangeMaxN = 8192 diff --git a/tx_test.go b/tx_test.go index 6cb9b9049..08d04fa9a 100644 --- a/tx_test.go +++ b/tx_test.go @@ -7,10 +7,10 @@ import ( "fmt" "testing" - pilosa "github.com/molecula/featurebase/v3" - "github.com/molecula/featurebase/v3/server" - "github.com/molecula/featurebase/v3/test" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + pilosa "github.com/featurebasedb/featurebase/v3" + "github.com/featurebasedb/featurebase/v3/server" + "github.com/featurebasedb/featurebase/v3/test" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck ) func queryIRABit(m0api *pilosa.API, acctOwnerID uint64, iraField string, iraRowID uint64, index string) (bit bool) { diff --git a/txfactory.go b/txfactory.go index d2b6ced89..5be1d2d82 100644 --- a/txfactory.go +++ b/txfactory.go @@ -8,9 +8,9 @@ import ( "strings" "sync" - "github.com/molecula/featurebase/v3/task" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/task" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" ) diff --git a/utils_internal_test.go b/utils_internal_test.go index b3fb07796..387b3dbd6 100644 --- a/utils_internal_test.go +++ b/utils_internal_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/disco" - "github.com/molecula/featurebase/v3/etcd" - pnet "github.com/molecula/featurebase/v3/net" - "github.com/molecula/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/disco" + "github.com/featurebasedb/featurebase/v3/etcd" + pnet "github.com/featurebasedb/featurebase/v3/net" + "github.com/featurebasedb/featurebase/v3/testhook" ) // utilities used by tests diff --git a/view.go b/view.go index 3f2829a01..3885709ac 100644 --- a/view.go +++ b/view.go @@ -14,11 +14,11 @@ import ( "sync/atomic" "time" - "github.com/molecula/featurebase/v3/pql" - "github.com/molecula/featurebase/v3/roaring" - "github.com/molecula/featurebase/v3/stats" - "github.com/molecula/featurebase/v3/testhook" - "github.com/molecula/featurebase/v3/vprint" + "github.com/featurebasedb/featurebase/v3/pql" + "github.com/featurebasedb/featurebase/v3/roaring" + "github.com/featurebasedb/featurebase/v3/stats" + "github.com/featurebasedb/featurebase/v3/testhook" + "github.com/featurebasedb/featurebase/v3/vprint" "github.com/pkg/errors" "golang.org/x/sync/errgroup" ) diff --git a/view_internal_test.go b/view_internal_test.go index df6874734..82bdda503 100644 --- a/view_internal_test.go +++ b/view_internal_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/molecula/featurebase/v3/testhook" - . "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck + "github.com/featurebasedb/featurebase/v3/testhook" + . "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck "golang.org/x/sync/errgroup" )