We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ask-astro/airflow/include/data/schema.json
Line 54 in c45487c
Without specifying a tokenization scheme ingest will default to word as per https://weaviate.io/developers/weaviate/config-refs/schema#property-tokenization. This will split snake-case configuration parameters and environment variables treating underscore as whitespace.
word
Example as per https://github.com/weaviate/weaviate/blob/764935fe4b576c87750d6a16ea20fd6c349b20b8/adapters/repos/db/helpers/tokenizer.go#L67
func main() { in := "THIS is my_env_variable" fmt.Print("\nwhitespace") fmt.Print(tokenizeWhitespace(in)) fmt.Print("\nlowercase") fmt.Print(tokenizeLowercase(in)) fmt.Print("\nword") fmt.Print(tokenizeWord(in)) fmt.Print("\nwildcards") fmt.Print(tokenizeWordWithWildcards(in)) }
Results in...
whitespace[THIS is my_env_variable] lowercase[this is my_env_variable] word[this is my env variable] wildcards[this is my env variable]
To prevent splitting of snake-case words or to lose camel-case params we need to switch to whitespace.
whitespace
The text was updated successfully, but these errors were encountered:
fixes astronomer#109
9a2f418
fixes #109
2f8e801
eb3f1ed
33766a4
@sunank200 — is this issue still relevant?
Sorry, something went wrong.
No branches or pull requests
ask-astro/airflow/include/data/schema.json
Line 54 in c45487c
Without specifying a tokenization scheme ingest will default to
word
as per https://weaviate.io/developers/weaviate/config-refs/schema#property-tokenization. This will split snake-case configuration parameters and environment variables treating underscore as whitespace.Example as per https://github.com/weaviate/weaviate/blob/764935fe4b576c87750d6a16ea20fd6c349b20b8/adapters/repos/db/helpers/tokenizer.go#L67
Results in...
To prevent splitting of snake-case words or to lose camel-case params we need to switch to
whitespace
.The text was updated successfully, but these errors were encountered: