-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
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
Update documentation and remove unesessary configuration #3591
Conversation
zipkin-server/README.md
Outdated
|
||
## Configuration | ||
We support ENV variable configuration, such as `STORAGE_TYPE=cassandra3`, as they are familiar to | ||
We support ENV variable configuration, such as `ZIPKIN_STORAGE=cassandra`, as they are familiar to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We support ENV variable configuration, such as `ZIPKIN_STORAGE=cassandra`, as they are familiar to | |
We support ENV variable configuration, such as `ZIPKIN_STORAGE=cassandra3`, as they are familiar to |
I think we consistent with previous. Could you rechecck?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the names to cassandra3
zipkin-server/README.md
Outdated
* `ZIPKIN_STORAGE_BANYANDB_HOST`: The host of BanyanDB. Defaults to `127.0.0.1`. | ||
* `ZIPKIN_STORAGE_BANYANDB_PORT`: The port of BanyanDB. Defaults to `17912`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be merged as targets
. Could you recheck your dependency version of OAP and sync the doc?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The configuration and documentation have been updated.
zipkin-server/README.md
Outdated
### Legacy (v1) storage components | ||
The following components are no longer encouraged, but exist to help aid | ||
transition to supported ones. These are indicated as "v1" as they use | ||
data layouts based on Zipkin's V1 Thrift model, as opposed to the | ||
simpler v2 data model currently used. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this statement? I think the new of v3 includes making MySQL and PG back to be available.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Been deleted.
@@ -92,14 +92,13 @@ accordingly. | |||
|
|||
Ex. If your link name is "storage" for an Elasticsearch container: | |||
``` | |||
ES_HOSTS=http://$STORAGE_PORT_9200_TCP_ADDR:9200 | |||
ZIPKIN_STORAGE_ES_CLUSTER_NODES=$STORAGE_PORT_9200_TCP_ADDR:9200 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we maintain both variables and deprecate the former? As far as I understand we want to keep retrocompatibility for ease migration.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could keep some consistent with before. But things like storage selector, it is very skywalking style, can't be aligned with true/false style.
Features of Zipkin v3 have been almost developed, so this pull request is intended for updating the documentation and removing unnecessary configuration items.