Skip to content

basic example query service #13477

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

Merged
merged 47 commits into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
e0f93cf
go basic example
asmyasnikov Sep 3, 2024
caacee4
OOM killed as link to wiki
asmyasnikov Oct 8, 2024
6f32cfb
Apply suggestions from code review
asmyasnikov Dec 6, 2024
3afc23b
Merge branch 'main' into basic-example-query-service
rekby Jan 16, 2025
45568b5
some style and typos
rekby Jan 16, 2025
4601105
style
rekby Jan 16, 2025
cdd8ad6
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
4873a4b
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
4202168
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
836ab3a
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
64dd7d6
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
5a88c66
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
9e0c525
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
ca9a433
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
429ae05
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
b1ea99a
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
463fd53
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
607851d
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
c64207f
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 21, 2025
d896a1b
type
rekby Jan 17, 2025
7b39505
style and by comments
rekby Jan 21, 2025
1b09293
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Jan 23, 2025
49118d9
Merge branch 'main' into basic-example-query-service
rekby Jan 27, 2025
a3124ab
resolve merge conflict
rekby Feb 11, 2025
550da1e
Merge branch 'main' into basic-example-query-service
rekby Feb 11, 2025
313548b
fix linter
rekby Feb 11, 2025
66f8a56
small fixes
rekby Feb 12, 2025
09a889a
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Feb 17, 2025
7417cd4
init english version
rekby Feb 24, 2025
fcf27d7
english translation
rekby Feb 28, 2025
bdceeed
linter
rekby Feb 28, 2025
adc31be
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
33f3300
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
e5f6d83
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
4b0f0ef
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
de70dcd
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
b798562
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
fd31605
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
ae40f0f
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
fd1d791
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Mar 4, 2025
e7e4049
Update ydb/docs/ru/core/dev/example-app/go/index.md
rekby Mar 4, 2025
1eab427
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
aa75960
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
af338a1
Update ydb/docs/en/core/dev/example-app/go/index.md
rekby Mar 4, 2025
62b8d8a
fix-typo
rekby Mar 4, 2025
4acc6c6
fix style
rekby Mar 4, 2025
7ee55d4
Apply suggestions from code review
rekby Mar 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ydb/docs/en/core/dev/example-app/go/_includes/run_custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ If authentication is enabled for the database, the [authentication mode](../../.
Run the command as follows:

```bash
( export <auth_mode_var>="<auth_mode_value>" && cd ydb-go-examples && \
( export <auth_mode_var>="<auth_mode_value>" && cd ydb-go-sdk/examples && \
go run ./basic -ydb="<endpoint>?database=<database>" )
```

Expand All @@ -19,6 +19,6 @@ where
For example:

```bash
( export YDB_ACCESS_TOKEN_CREDENTIALS="t1.9euelZqOnJuJlc..." && cd ydb-go-examples && \
go run ./basic -ydb="grpcs://ydb.example.com:2135?database=/somepath/somelocation" )
( export YDB_ACCESS_TOKEN_CREDENTIALS="t1.9euelZqOnJuJlc..." && cd ydb-go-sdk/examples && \
go run ./basic -ydb="grpcs://ydb.example.com:2135/somepath/somelocation" )
```
6 changes: 3 additions & 3 deletions ydb/docs/en/core/dev/example-app/go/_includes/run_docker.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
To connect to a locally deployed {{ ydb-short-name }} database according to the [Docker](../../../../quickstart.md) use case, run the following command in the default configuration:

```bash
( export YDB_ANONYMOUS_CREDENTIALS=1 && cd ydb-go-examples && \
go run ./basic -ydb="grpc://localhost:2136?database=/local" )
``` bash
( export YDB_ANONYMOUS_CREDENTIALS=1 && cd ydb-go-sdk/examples && \
go run ./basic/native/query -ydb="grpc://localhost:2136/local" )
```

Loading