Commit Graph

1919 Commits

Author SHA1 Message Date
Jingyu Zhou ee626409c0
Merge pull request #11064 from apple/features/coroutines
Added C++ Coroutine support to Flow
2023-11-22 09:58:32 -08:00
Markus Pilman 45c459cfc9 Remove path to `mpilman` home dir in tutorial.cpp 2023-11-17 20:38:15 +01:00
Markus Pilman fd4a300d4c Address review comments and fix serious bug 2023-11-17 11:08:34 +01:00
Jingyu Zhou decd1bc717
Merge pull request #11061 from xis19/main
Updates the release notes for 7.3.27 and 7.3.26
2023-11-16 13:52:45 -08:00
Xiaoge Su 3f42fec342 fixup! Fix the formatting issue in rst file 2023-11-16 12:39:22 -08:00
Xiaoge Su 2e137b7226 fixup! Update documentation per comments 2023-11-14 13:57:40 -08:00
Xiaoge Su 3bc8c5c070 Update the release notes per comment 2023-11-14 12:37:13 -08:00
Markus Pilman f38ae571b0 Additional tutorial fdbclient API usage fixed 2023-11-14 16:01:42 +01:00
Markus Pilman f9252d3c27 Fix tutorial fdbclient API usage 2023-11-14 11:21:59 +01:00
Markus Pilman e07b3e35ca Added C++ Coroutine support to Flow 2023-11-14 10:10:11 +01:00
Xiaoge Su be67ed9b27 Updates the release notes for 7.3.27 and 7.3.26 2023-11-09 14:40:03 -08:00
Sreenath Bodagala bd99c12aa4 - Address simulation test failures and update status related documentation 2023-11-08 21:18:57 +00:00
Jingyu Zhou a7e21fa17c
Merge pull request #11027 from johscheuer/document-locality-based-exclusion-limitation
Document the current limitation of locality-based exclusions
2023-10-26 19:49:20 -07:00
Johannes M. Scheuermann f1eb909f71 Improve wording 2023-10-25 14:04:43 +02:00
Jingyu Zhou 100fe4b6f2 Update 7.1.42 release notes 2023-10-24 11:21:49 -07:00
Johannes M. Scheuermann 571c5e4b34 Document the current limitation of locality-based exclusions 2023-10-24 11:17:51 +02:00
hao fu 3967136eeb Add Knobs to control retry delays for BlobStore
We learnt that a new connection needs to be made for each HTTP
request through proxy to AWS S3, thus it would fail when try
to re-use the connections and see retryable errors.

Meanwhile, delay between each retry grow 2x each time it failed,
if the connection pool has a larger size, the delay can be long.

As a result, this change adds Knobs to cap the max delay of
retryable errors, including one for general retryable errors,
and the other only for connection failure error.

This change also adds more logging for debugging.
2023-10-23 16:39:34 -07:00
Yao Xiao 7536734b85 Release notes for 7.3.25 2023-10-18 12:43:50 -07:00
Jingyu Zhou 924a3540f0 Add 7.1.42, 7.1.43 release notes 2023-10-12 12:52:07 -07:00
Sreenath Bodagala 1114b6862a - Correct a typo in the special keys related documentation statement 2023-10-10 19:23:24 +00:00
Sreenath Bodagala b43879fb16 - A modified version of the special keys related documentation statement 2023-10-10 19:02:46 +00:00
Sreenath Bodagala 6021d05fc7 - Update documentation 2023-10-10 16:39:08 +00:00
Jingyu Zhou 59e1470263
Merge pull request #10599 from wdowling/radixtree-production
Remove "beta" from the Radixtree storage engine name
2023-09-25 17:04:46 -07:00
Jingyu Zhou fbc375e2c9 Add 7.3.18, 7.3.19 release notes 2023-09-25 11:47:52 -07:00
William Dowling 0f752473be
Merge branch 'main' into radixtree-production 2023-09-25 09:52:20 +02:00
Jingyu Zhou f4d9012fcb Add 7.1.40, 7.1.41 release notes 2023-09-20 13:02:16 -07:00
Yao Xiao 55f2eaec2d
Release notes for 7.3.17. (#10874)
* Release notes for 7.3.17.

* Update documentation/sphinx/source/release-notes/release-notes-730.rst

Co-authored-by: Jingyu Zhou <jingyuzhou@gmail.com>

* Update documentation/sphinx/source/release-notes/release-notes-730.rst

Co-authored-by: Jingyu Zhou <jingyuzhou@gmail.com>

* Update documentation/sphinx/source/release-notes/release-notes-730.rst

Co-authored-by: Jingyu Zhou <jingyuzhou@gmail.com>

* Update documentation/sphinx/source/release-notes/release-notes-730.rst

Co-authored-by: Jingyu Zhou <jingyuzhou@gmail.com>

* Update release-notes-730.rst

* Update release-notes-730.rst

---------

Co-authored-by: Jingyu Zhou <jingyuzhou@gmail.com>
2023-09-11 13:11:23 -07:00
neethuhaneesha cb3dac21a9
Release notes for 7.1.38/7.1.39 (#10883) 2023-09-09 10:23:43 -07:00
Zhe Wu cb1e792169 Fix status json schemas perpetual_storage_wiggle_engine 2023-09-05 11:10:53 -07:00
Zhe Wu e2f5c50a7b
Merge pull request #10828 from halfprice/zhewu/clear-wiggle-storage-engine
Add option to set perpetual_storage_wiggle_engine to none
2023-09-05 11:06:21 -07:00
Lukas Joswiak bfb1c51299 Add `clearknob` fdbcli command
The `clearknob` command clears the value that a knob has been set to in
the configuration database. Note that this does not mean the knob value
itself gets cleared - only the value in the configuration database is
cleared. The value of the knob will revert to whatever is hardcoded in
the corresponding `*Knobs.cpp` file.

Sample `fdbcli` session:

```
Welcome to the fdbcli. For help, type `help'.
fdb> getknob min_trace_severity
`min_trace_severity' is not found
fdb> setknob min_trace_severity 20
Please set a description for the change. Description must be non-empty
description: test
Committed (2)
fdb> getknob min_trace_severity
`min_trace_severity' is `20'
fdb> clearknob min_trace_severity
Please set a description for the change. Description must be non-empty
description: clear
Committed (4)
fdb> getknob min_trace_severity
`min_trace_severity' is not found
```

Transactions are also supported with the new `clearknob` command:

```
Welcome to the fdbcli. For help, type `help'.
fdb> begin
Transaction started
fdb> setknob min_trace_severity 20
fdb> clearknob min_trace_severity
fdb> commit
Please set a description for the change. Description must be non-empty.
description: test
Committed (16)
fdb> getknob min_trace_severity
`min_trace_severity' is not found
```
2023-08-31 17:36:05 -07:00
Zhe Wu 314d1b66a5 Fix StatusWorkload after adding perpetual_storage_wiggle_engine 2023-08-29 13:58:23 -07:00
Johannes Scheuermann 957573da02
Update C documentation of installed files and locations (#10737)
Update C documentation of installed files and locations
2023-08-22 16:21:26 -05:00
He Liu 3b295b4c93
Release notes for 7.1.36/37. (#10768) 2023-08-11 14:35:08 -07:00
Aaron Molitor 195e51cb21 update release notes 2023-08-10 16:48:08 -05:00
FoundationDB CI c71a6834a2
remove release notes files that are blocking CI builds 2023-08-07 21:22:13 +00:00
Jingyu Zhou 7691835a66
Merge pull request #10728 from apple/ahusain/release-notes-71.3.2-main
Release notes snowflake/71.3.2
2023-08-07 14:17:40 -06:00
Ata E Husain Bohra 67b9543e77 Release notes snowflake/71.3.2
Description

Release notes snowflake/71.3.2

Testing
2023-08-03 08:44:45 -07:00
Ata E Husain Bohra 188a383a2f Merge branch 'main' into ahusain/release-notes-71.3.0 2023-07-31 11:32:08 -07:00
Ata E Husain Bohra d634f9247c Remove the latest release marker
Description

Testing
2023-07-31 11:31:32 -07:00
Aaron Molitor 71510aafb3 remove errant release notes file 2023-07-31 12:32:42 -05:00
Ata E Husain Bohra 33b98d91bc Address review comments
Description

Testing
2023-07-28 15:03:58 -07:00
Jingyu Zhou e1bde1ebf3
Merge pull request #10668 from apple/ahusain/release-notes-71.3.1-main
Release notes - snowflake/71.3.1
2023-07-28 10:28:37 -07:00
Jingyu Zhou b39c8ef7cb
Add 7.1.34, 7.1.35 release notes (#10695) 2023-07-28 08:45:22 -07:00
Ata E Husain Bohra f642c3e2e9 Release notes - snowflake/71.3.1
Description

Release notes - snowflake/71.3.1a

Testing
2023-07-24 09:17:21 -07:00
Ata E Husain Bohra 454c5a62b1 Release notes - snowflake/release-71.3
Description

Release notes for snowflake/release-71.3

Testing
2023-07-24 09:14:20 -07:00
William Dowling 3ea1ba1648 Remove beta status from RadixTree storage engine 2023-07-05 17:54:54 +02:00
Yanqin Jin 09d44d9d9f Merge remote-tracking branch 'origin/main' into update-doc-building_cluster 2023-07-02 16:43:55 -07:00
Jingyu Zhou e5728fcb84
Fix the version for deprecated keys (#10553) 2023-06-26 13:49:41 -07:00
Zhe Wu 5c8a163c72
Update main branch to 7.4 (#10459)
* Update main branch to 7.4

* Update API version to 740

* Makes fdb_c_client_config_tests.py passing after API version update

* Remove from_7.3.0_until_7.4.0 and add from_7.3.0

* Update tests in fdb_c_client_config_tests.py
2023-06-15 10:19:39 +02:00