Documentation
¶
Index ¶
- type CompatibilityLevel
- type Error
- type ISchemaRegistryClient
- type MockSchemaRegistryClient
- func (mck *MockSchemaRegistryClient) CachingEnabled(bool)
- func (mck *MockSchemaRegistryClient) ChangeSubjectCompatibilityLevel(context.Context, string, CompatibilityLevel) (*CompatibilityLevel, error)
- func (mck *MockSchemaRegistryClient) CodecCreationEnabled(bool)
- func (mck *MockSchemaRegistryClient) CreateSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, ...) (*Schema, error)
- func (mck *MockSchemaRegistryClient) DeleteSubject(_ context.Context, subject string, _ bool) error
- func (mck *MockSchemaRegistryClient) DeleteSubjectByVersion(_ context.Context, subject string, version int, _ bool) error
- func (mck *MockSchemaRegistryClient) GetCompatibilityLevel(context.Context, string, bool) (*CompatibilityLevel, error)
- func (mck *MockSchemaRegistryClient) GetGlobalCompatibilityLevel(_ context.Context) (*CompatibilityLevel, error)
- func (mck *MockSchemaRegistryClient) GetLatestSchema(ctx context.Context, subject string) (*Schema, error)
- func (mck *MockSchemaRegistryClient) GetSchema(_ context.Context, schemaID int) (*Schema, error)
- func (mck *MockSchemaRegistryClient) GetSchemaByVersion(_ context.Context, subject string, version int) (*Schema, error)
- func (mck *MockSchemaRegistryClient) GetSchemaVersions(_ context.Context, subject string) ([]int, error)
- func (mck *MockSchemaRegistryClient) GetSubjects(_ context.Context) ([]string, error)
- func (mck *MockSchemaRegistryClient) GetSubjectsIncludingDeleted(_ context.Context) ([]string, error)
- func (mck *MockSchemaRegistryClient) IsSchemaCompatible(context.Context, string, string, string, SchemaType, ...Reference) (bool, error)
- func (mck *MockSchemaRegistryClient) LookupSchema(context.Context, string, string, SchemaType, ...Reference) (*Schema, error)
- func (mck *MockSchemaRegistryClient) ResetCache()
- func (mck *MockSchemaRegistryClient) SetBearerToken(TokenProvider)
- func (mck *MockSchemaRegistryClient) SetCredentials(string, string)
- func (mck *MockSchemaRegistryClient) SetSchema(_ context.Context, id int, subject string, schema string, ...) (*Schema, error)
- func (mck *MockSchemaRegistryClient) SetTimeout(time.Duration)
- type Reference
- type Schema
- type SchemaRegistryClient
- func (client *SchemaRegistryClient) CacheLatest(value bool)
- func (client *SchemaRegistryClient) CachingEnabled(value bool)
- func (client *SchemaRegistryClient) ChangeSubjectCompatibilityLevel(ctx context.Context, subject string, compatibility CompatibilityLevel) (*CompatibilityLevel, error)
- func (client *SchemaRegistryClient) CodecCreationEnabled(value bool)
- func (client *SchemaRegistryClient) CreateSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, ...) (*Schema, error)
- func (client *SchemaRegistryClient) DeleteSubject(ctx context.Context, subject string, permanent bool) error
- func (client *SchemaRegistryClient) DeleteSubjectByVersion(ctx context.Context, subject string, version int, permanent bool) error
- func (client *SchemaRegistryClient) GetCompatibilityLevel(ctx context.Context, subject string, defaultToGlobal bool) (*CompatibilityLevel, error)
- func (client *SchemaRegistryClient) GetGlobalCompatibilityLevel(ctx context.Context) (*CompatibilityLevel, error)
- func (client *SchemaRegistryClient) GetLatestSchema(ctx context.Context, subject string) (*Schema, error)
- func (client *SchemaRegistryClient) GetSchema(ctx context.Context, schemaID int) (*Schema, error)
- func (client *SchemaRegistryClient) GetSchemaByVersion(ctx context.Context, subject string, version int) (*Schema, error)
- func (client *SchemaRegistryClient) GetSchemaVersions(ctx context.Context, subject string) ([]int, error)
- func (client *SchemaRegistryClient) GetSubjects(ctx context.Context) ([]string, error)
- func (client *SchemaRegistryClient) GetSubjectsIncludingDeleted(ctx context.Context) ([]string, error)
- func (client *SchemaRegistryClient) IsSchemaCompatible(ctx context.Context, subject, schema, version string, schemaType SchemaType, ...) (bool, error)
- func (client *SchemaRegistryClient) LookupSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, ...) (*Schema, error)
- func (client *SchemaRegistryClient) ResetCache()
- func (client *SchemaRegistryClient) SetBearerToken(token TokenProvider)
- func (client *SchemaRegistryClient) SetCredentials(username string, password string)
- func (client *SchemaRegistryClient) SetTimeout(timeout time.Duration)
- type SchemaType
- type TokenProvider
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CompatibilityLevel ¶
type CompatibilityLevel string
const ( None CompatibilityLevel = "NONE" Backward CompatibilityLevel = "BACKWARD" BackwardTransitive CompatibilityLevel = "BACKWARD_TRANSITIVE" Forward CompatibilityLevel = "FORWARD" ForwardTransitive CompatibilityLevel = "FORWARD_TRANSITIVE" Full CompatibilityLevel = "FULL" FullTransitive CompatibilityLevel = "FULL_TRANSITIVE" )
func (CompatibilityLevel) String ¶
func (s CompatibilityLevel) String() string
type Error ¶
type Error struct { Code int `json:"error_code"` Message string `json:"message"` // contains filtered or unexported fields }
Error implements error, encodes HTTP errors from Schema Registry.
type ISchemaRegistryClient ¶
type ISchemaRegistryClient interface { GetGlobalCompatibilityLevel(ctx context.Context) (*CompatibilityLevel, error) GetCompatibilityLevel(ctx context.Context, subject string, defaultToGlobal bool) (*CompatibilityLevel, error) GetSubjects(ctx context.Context) ([]string, error) GetSubjectsIncludingDeleted(ctx context.Context) ([]string, error) GetSchema(ctx context.Context, schemaID int) (*Schema, error) GetLatestSchema(ctx context.Context, subject string) (*Schema, error) GetSchemaVersions(ctx context.Context, subject string) ([]int, error) GetSchemaByVersion(ctx context.Context, subject string, version int) (*Schema, error) CreateSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, references ...Reference) (*Schema, error) LookupSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, references ...Reference) (*Schema, error) ChangeSubjectCompatibilityLevel(ctx context.Context, subject string, compatibility CompatibilityLevel) (*CompatibilityLevel, error) DeleteSubject(ctx context.Context, subject string, permanent bool) error DeleteSubjectByVersion(ctx context.Context, subject string, version int, permanent bool) error SetCredentials(username string, password string) SetBearerToken(token TokenProvider) SetTimeout(timeout time.Duration) CachingEnabled(value bool) ResetCache() CodecCreationEnabled(value bool) IsSchemaCompatible(ctx context.Context, subject, schema, version string, schemaType SchemaType, references ...Reference) (bool, error) }
ISchemaRegistryClient provides the definition of the operations that this Schema Registry client provides.
type MockSchemaRegistryClient ¶
type MockSchemaRegistryClient struct {
// contains filtered or unexported fields
}
MockSchemaRegistryClient represents an in-memory SchemaRegistryClient for testing purposes.
func CreateMockSchemaRegistryClient ¶
func CreateMockSchemaRegistryClient(mockURL string) *MockSchemaRegistryClient
CreateMockSchemaRegistryClient initializes a MockSchemaRegistryClient
func (*MockSchemaRegistryClient) CachingEnabled ¶
func (mck *MockSchemaRegistryClient) CachingEnabled(bool)
CachingEnabled is not implemented
func (*MockSchemaRegistryClient) ChangeSubjectCompatibilityLevel ¶
func (mck *MockSchemaRegistryClient) ChangeSubjectCompatibilityLevel(context.Context, string, CompatibilityLevel) (*CompatibilityLevel, error)
ChangeSubjectCompatibilityLevel is not implemented
func (*MockSchemaRegistryClient) CodecCreationEnabled ¶
func (mck *MockSchemaRegistryClient) CodecCreationEnabled(bool)
CodecCreationEnabled is not implemented
func (*MockSchemaRegistryClient) CreateSchema ¶
func (mck *MockSchemaRegistryClient) CreateSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, _ ...Reference) (*Schema, error)
CreateSchema generates a new schema with the given details, references are unused
func (*MockSchemaRegistryClient) DeleteSubject ¶
DeleteSubject removes given subject from the cache
func (*MockSchemaRegistryClient) DeleteSubjectByVersion ¶
func (mck *MockSchemaRegistryClient) DeleteSubjectByVersion(_ context.Context, subject string, version int, _ bool) error
DeleteSubjectByVersion removes given subject's version from cache
func (*MockSchemaRegistryClient) GetCompatibilityLevel ¶
func (mck *MockSchemaRegistryClient) GetCompatibilityLevel(context.Context, string, bool) (*CompatibilityLevel, error)
GetCompatibilityLevel is not implemented
func (*MockSchemaRegistryClient) GetGlobalCompatibilityLevel ¶
func (mck *MockSchemaRegistryClient) GetGlobalCompatibilityLevel(_ context.Context) (*CompatibilityLevel, error)
GetGlobalCompatibilityLevel is not implemented
func (*MockSchemaRegistryClient) GetLatestSchema ¶
func (mck *MockSchemaRegistryClient) GetLatestSchema(ctx context.Context, subject string) (*Schema, error)
GetLatestSchema Returns the highest ordinal version of a Schema for a given `concrete subject`
func (*MockSchemaRegistryClient) GetSchemaByVersion ¶
func (mck *MockSchemaRegistryClient) GetSchemaByVersion(_ context.Context, subject string, version int) (*Schema, error)
GetSchemaByVersion Returns the given Schema according to the passed in subject and version number
func (*MockSchemaRegistryClient) GetSchemaVersions ¶
func (mck *MockSchemaRegistryClient) GetSchemaVersions(_ context.Context, subject string) ([]int, error)
GetSchemaVersions Returns the array of versions this subject has previously registered
func (*MockSchemaRegistryClient) GetSubjects ¶
func (mck *MockSchemaRegistryClient) GetSubjects(_ context.Context) ([]string, error)
GetSubjects Returns all registered subjects
func (*MockSchemaRegistryClient) GetSubjectsIncludingDeleted ¶
func (mck *MockSchemaRegistryClient) GetSubjectsIncludingDeleted(_ context.Context) ([]string, error)
GetSubjectsIncludingDeleted is not implemented and returns an error
func (*MockSchemaRegistryClient) IsSchemaCompatible ¶
func (mck *MockSchemaRegistryClient) IsSchemaCompatible(context.Context, string, string, string, SchemaType, ...Reference) (bool, error)
IsSchemaCompatible is not implemented
func (*MockSchemaRegistryClient) LookupSchema ¶
func (mck *MockSchemaRegistryClient) LookupSchema(context.Context, string, string, SchemaType, ...Reference) (*Schema, error)
LookupSchema is not implemented
func (*MockSchemaRegistryClient) ResetCache ¶
func (mck *MockSchemaRegistryClient) ResetCache()
ResetCache is not implemented
func (*MockSchemaRegistryClient) SetBearerToken ¶
func (mck *MockSchemaRegistryClient) SetBearerToken(TokenProvider)
SetBearerToken is not implemented
func (*MockSchemaRegistryClient) SetCredentials ¶
func (mck *MockSchemaRegistryClient) SetCredentials(string, string)
SetCredentials is not implemented
func (*MockSchemaRegistryClient) SetSchema ¶
func (mck *MockSchemaRegistryClient) SetSchema(_ context.Context, id int, subject string, schema string, schemaType SchemaType, version int) (*Schema, error)
SetSchema overwrites a schema with the given id. Allows you to set a schema with a specific ID for testing purposes. Sets the ID counter to the given id if it is greater than the current counter. Version is used to set the version of the schema. If version is -1, the version will be set to the next available version.
func (*MockSchemaRegistryClient) SetTimeout ¶
func (mck *MockSchemaRegistryClient) SetTimeout(time.Duration)
SetTimeout is not implemented
type Reference ¶
type Reference struct { Name string `json:"name"` Subject string `json:"subject"` Version int `json:"version"` }
Schema references use the import statement of Protobuf and the $ref field of JSON Schema. They are defined by the name of the import or $ref and the associated subject in the registry.
type Schema ¶
type Schema struct {
// contains filtered or unexported fields
}
Schema is a data structure that holds all the relevant information about schemas.
func NewSchema ¶
func NewSchema( id int, schema string, schemaType SchemaType, version int, references []Reference, codec *goavro.Codec, jsonSchema *jsonschema.Schema, ) (*Schema, error)
NewSchema instantiates a new Schema struct.
func (*Schema) Codec ¶
func (schema *Schema) Codec() *goavro.Codec
Codec ensures access to Codec Will try to initialize a new one if it hasn't been initialized before Will return nil if it can't initialize a codec from the schema
func (*Schema) JsonSchema ¶
func (schema *Schema) JsonSchema() *jsonschema.Schema
JsonSchema ensures access to JsonSchema Will try to initialize a new one if it hasn't been initialized before Will return nil if it can't initialize a json schema from the schema
func (*Schema) References ¶
References ensures access to References
func (*Schema) SchemaType ¶
func (schema *Schema) SchemaType() *SchemaType
SchemaType ensures access to SchemaType
type SchemaRegistryClient ¶
type SchemaRegistryClient struct {
// contains filtered or unexported fields
}
SchemaRegistryClient allows interactions with Schema Registry over HTTP. Applications using this client can retrieve data about schemas, which in turn can be used to serialize and deserialize data.
func CreateSchemaRegistryClient ¶
func CreateSchemaRegistryClient(schemaRegistryURL string) *SchemaRegistryClient
CreateSchemaRegistryClient creates a client that allows interactions with Schema Registry over HTTP. Applications using this client can retrieve data about schemas, which in turn can be used to serialize and deserialize records.
func CreateSchemaRegistryClientWithOptions ¶
func CreateSchemaRegistryClientWithOptions(schemaRegistryURL string, client *http.Client, semaphoreWeight int) *SchemaRegistryClient
CreateSchemaRegistryClientWithOptions provides the ability to pass the http.Client to be used, as well as the semaphoreWeight for concurrent requests
func (*SchemaRegistryClient) CacheLatest ¶ added in v0.8.0
func (client *SchemaRegistryClient) CacheLatest(value bool)
CacheLatest controls if schemas with the latest as a version is cached.
func (*SchemaRegistryClient) CachingEnabled ¶
func (client *SchemaRegistryClient) CachingEnabled(value bool)
CachingEnabled allows the client to cache any values that have been returned, which may speed up performance if these values rarely changes.
func (*SchemaRegistryClient) ChangeSubjectCompatibilityLevel ¶
func (client *SchemaRegistryClient) ChangeSubjectCompatibilityLevel(ctx context.Context, subject string, compatibility CompatibilityLevel) (*CompatibilityLevel, error)
ChangeSubjectCompatibilityLevel changes the compatibility level of the subject.
func (*SchemaRegistryClient) CodecCreationEnabled ¶
func (client *SchemaRegistryClient) CodecCreationEnabled(value bool)
CodecCreationEnabled allows the application to enable/disable the automatic creation of codec's when schemas are returned.
func (*SchemaRegistryClient) CreateSchema ¶
func (client *SchemaRegistryClient) CreateSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, references ...Reference) (*Schema, error)
CreateSchema creates a new schema in Schema Registry and associates with the subject provided. It returns the newly created schema with all its associated information.
func (*SchemaRegistryClient) DeleteSubject ¶
func (client *SchemaRegistryClient) DeleteSubject(ctx context.Context, subject string, permanent bool) error
DeleteSubject deletes
func (*SchemaRegistryClient) DeleteSubjectByVersion ¶
func (client *SchemaRegistryClient) DeleteSubjectByVersion(ctx context.Context, subject string, version int, permanent bool) error
DeleteSubjectByVersion deletes the version of the scheme
func (*SchemaRegistryClient) GetCompatibilityLevel ¶
func (client *SchemaRegistryClient) GetCompatibilityLevel(ctx context.Context, subject string, defaultToGlobal bool) (*CompatibilityLevel, error)
GetCompatibilityLevel returns the compatibility level of the subject. If defaultToGlobal is set to true and no compatibility level is set on the subject, the global compatibility level is returned.
func (*SchemaRegistryClient) GetGlobalCompatibilityLevel ¶
func (client *SchemaRegistryClient) GetGlobalCompatibilityLevel(ctx context.Context) (*CompatibilityLevel, error)
GetGlobalCompatibilityLevel returns the global compatibility level of the registry.
func (*SchemaRegistryClient) GetLatestSchema ¶
func (client *SchemaRegistryClient) GetLatestSchema(ctx context.Context, subject string) (*Schema, error)
GetLatestSchema gets the schema associated with the given subject. The schema returned contains the last version for that subject.
func (*SchemaRegistryClient) GetSchemaByVersion ¶
func (client *SchemaRegistryClient) GetSchemaByVersion(ctx context.Context, subject string, version int) (*Schema, error)
GetSchemaByVersion gets the schema associated with the given subject. The schema returned contains the version specified as a parameter.
func (*SchemaRegistryClient) GetSchemaVersions ¶
func (client *SchemaRegistryClient) GetSchemaVersions(ctx context.Context, subject string) ([]int, error)
GetSchemaVersions returns a list of versions from a given subject.
func (*SchemaRegistryClient) GetSubjects ¶
func (client *SchemaRegistryClient) GetSubjects(ctx context.Context) ([]string, error)
GetSubjects returns a list of all subjects in the registry
func (*SchemaRegistryClient) GetSubjectsIncludingDeleted ¶
func (client *SchemaRegistryClient) GetSubjectsIncludingDeleted(ctx context.Context) ([]string, error)
GetSubjectsIncludingDeleted returns a list of all subjects in the registry including those which have been soft deleted
func (*SchemaRegistryClient) IsSchemaCompatible ¶
func (client *SchemaRegistryClient) IsSchemaCompatible(ctx context.Context, subject, schema, version string, schemaType SchemaType, references ...Reference) (bool, error)
IsSchemaCompatible checks if the given schema is compatible with the given subject and version valid versions are versionID and "latest"
func (*SchemaRegistryClient) LookupSchema ¶
func (client *SchemaRegistryClient) LookupSchema(ctx context.Context, subject string, schema string, schemaType SchemaType, references ...Reference) (*Schema, error)
LookupSchema looks up the schema by subject and schema string. If it finds the schema it returns it with all its associated information.
func (*SchemaRegistryClient) ResetCache ¶
func (client *SchemaRegistryClient) ResetCache()
ResetCache resets the schema caches to be able to get updated schemas.
func (*SchemaRegistryClient) SetBearerToken ¶
func (client *SchemaRegistryClient) SetBearerToken(token TokenProvider)
SetBearerToken allows users to add a Bearer Token http header with calls to Schema Registry The BearerToken will override Schema Registry credentials
func (*SchemaRegistryClient) SetCredentials ¶
func (client *SchemaRegistryClient) SetCredentials(username string, password string)
SetCredentials allows users to set credentials to be used with Schema Registry, for scenarios when Schema Registry has authentication enabled.
func (*SchemaRegistryClient) SetTimeout ¶
func (client *SchemaRegistryClient) SetTimeout(timeout time.Duration)
SetTimeout allows the client to be reconfigured about how much time internal HTTP requests will take until they timeout. FYI, It defaults to five seconds.
type SchemaType ¶
type SchemaType string
const ( Protobuf SchemaType = "PROTOBUF" Avro SchemaType = "AVRO" Json SchemaType = "JSON" )
func (SchemaType) String ¶
func (s SchemaType) String() string