Markus Pilman
|
8b5780c36c
|
don't include source and binary dir
This forces users to use include paths from the sources root.
So `#include "Arena.h"` won't work anymore, only
`#include "flow/Arena.h"` will.
|
2020-04-06 10:13:49 -07:00 |
Evan Tschannen
|
303df197cf
|
Merge branch 'release-6.2'
# Conflicts:
# CMakeLists.txt
# bindings/c/test/mako/mako.c
# documentation/sphinx/source/release-notes.rst
# fdbbackup/backup.actor.cpp
# fdbclient/NativeAPI.actor.cpp
# fdbclient/NativeAPI.actor.h
# fdbserver/DataDistributionQueue.actor.cpp
# fdbserver/Knobs.cpp
# fdbserver/Knobs.h
# fdbserver/LogRouter.actor.cpp
# fdbserver/SkipList.cpp
# fdbserver/fdbserver.actor.cpp
# flow/CMakeLists.txt
# flow/Knobs.cpp
# flow/Knobs.h
# flow/flow.vcxproj
# flow/flow.vcxproj.filters
# versions.target
|
2020-03-06 18:22:46 -08:00 |
Evan Tschannen
|
b0062f58d3
|
fix: blobstore needs to handshake tls connections
|
2020-02-28 15:44:22 -08:00 |
Stephen Atherton
|
09e8d804e8
|
Added BlobStoreEndpoint::listBuckets(), renamed listBucket() and several related functions with similar names to listObjects() to avoid confusion and closer match what it actually does. Added a bytesDeleted output statistic to BlobStoreEndpoint::deleteRecursively.
|
2019-12-06 00:14:13 -08:00 |
Stephen Atherton
|
bc0b2aa040
|
Merge branch 'release-6.0' of https://github.com/apple/foundationdb
# Conflicts:
# documentation/sphinx/source/release-notes.rst
# fdbbackup/backup.actor.cpp
# fdbclient/BlobStore.actor.cpp
|
2019-03-12 04:49:12 -07:00 |
Stephen Atherton
|
87d0c5bae0
|
Bug/usability fix: The output URLs of fdbbackup list were meant to be directly usable for backup management operations but they were missing the bucket URL parameter.
|
2019-03-05 21:14:21 -08:00 |
Stephen Atherton
|
d3377722d5
|
Added blob store Backup URL parameter 'header' which enables addition of custom HTTP header fields to blob store HTTP requests. Added 'fdbbackup modify' command line tool for changing the backup URL and parameters, default snapshot interval, and/or current snapshot interval of a running backup.
|
2019-03-05 04:00:11 -08:00 |
mpilman
|
da67067a07
|
Make unnecessary state variable a local variable
|
2019-02-19 15:16:59 -08:00 |
mpilman
|
479a4d7c22
|
Minor fixes in fdbclient for intellisense
|
2019-02-19 15:16:59 -08:00 |
Evan Tschannen
|
684a22a52b
|
Merge branch 'release-6.0'
# Conflicts:
# documentation/sphinx/source/release-notes.rst
# fdbbackup/backup.actor.cpp
# fdbclient/BackupContainer.actor.cpp
# fdbclient/HTTP.actor.cpp
# fdbserver/storageserver.actor.cpp
# fdbserver/workloads/BackupCorrectness.actor.cpp
# versions.target
|
2019-01-09 16:14:46 -08:00 |
Stephen Atherton
|
339e15563e
|
Bug fix in blobstore request loop where zero-content requests (i.e. not uploads) could cause mismatches between requests and responses. Added HTTPRequest debug event.
|
2019-01-04 18:34:16 -08:00 |
Stephen Atherton
|
223b19f5ba
|
Rewrote backup metadata scheme to fix several design flaws involving cancelled or concurrent operations. Most importantly, before an expire deletes any data it marks the end of the range being deleted as 'unreliable' so further reads of the backup will treat versions before that point as having data holes.
|
2018-12-16 00:18:13 -08:00 |
Evan Tschannen
|
ed789f841b
|
fixed merge error with BlobStore
|
2018-11-27 17:10:09 -08:00 |
Evan Tschannen
|
1f3b6e8bdf
|
Merge branch 'release-6.0'
# Conflicts:
# documentation/sphinx/source/release-notes.rst
# fdbclient/BackupContainer.actor.cpp
# fdbclient/BlobStore.actor.cpp
# versions.target
|
2018-11-27 14:41:46 -08:00 |
A.J. Beamon
|
975711c389
|
Merge branch 'release-6.0' of github.com:apple/foundationdb
# Conflicts:
# documentation/sphinx/source/release-notes.rst
|
2018-11-27 09:50:39 -08:00 |
Stephen Atherton
|
ca6a6d4906
|
Added BlobStoreEndpoint::bucketExists() to check for existence of a bucket, and createBucket() now uses this to avoid trying to create a bucket that already exists.
|
2018-11-13 16:18:43 -08:00 |
Evan Tschannen
|
e45952bc53
|
Merge branch 'release-6.0'
# Conflicts:
# documentation/sphinx/source/release-notes.rst
# fdbclient/BackupContainer.actor.cpp
# fdbclient/BlobStore.actor.cpp
# fdbclient/HTTP.actor.cpp
# tests/BlobStore.txt
# versions.target
|
2018-11-13 16:06:39 -08:00 |
Stephen Atherton
|
983bd3346a
|
BackupContainerBlobStore no longer uses a hardcoded bucket name. BlobStoreEndpoint creating from a URL string now supports having additional parameters in the URL which it does not consume but rather returns to the caller, and BackupContainerBlobStore uses this to accept a "bucket" parameter.
|
2018-11-13 03:00:59 -08:00 |
Stephen Atherton
|
ff7e570679
|
Compatibility fix. RapidXML's "find first node with a specific name" functionality will not return a root node of a document which has the required name but also specifies an xmlns attribute. Minio specifies an xmlns attribute (of a defunct namespace at a dead link at Amazon) so its responses were not being parsed successfully.
|
2018-11-13 01:00:56 -08:00 |
Stephen Atherton
|
1009599662
|
Blobstore client now sends HTTP requests with a header indicating that only XML responses are accepted. JSON responses are no longer supported and xml2json has been removed. The request Date header format is now the standard ISO 8601 format indicated by the S3 documentation.
|
2018-11-13 00:49:13 -08:00 |
Evan Tschannen
|
4b5d0b4e2c
|
Merge branch 'release-6.0'
# Conflicts:
# documentation/sphinx/source/release-notes.rst
# fdbclient/AsyncFileBlobStore.actor.cpp
# fdbclient/AsyncFileBlobStore.actor.h
# fdbclient/BlobStore.actor.cpp
# fdbclient/BlobStore.h
# fdbclient/HTTP.actor.cpp
# fdbclient/ManagementAPI.actor.cpp
# fdbclient/NativeAPI.actor.cpp
# fdbrpc/LoadBalance.actor.h
# fdbrpc/batcher.actor.h
# fdbrpc/fdbrpc.vcxproj
# fdbrpc/sim2.actor.cpp
# fdbserver/DataDistribution.actor.cpp
# fdbserver/DataDistributionTracker.actor.cpp
# fdbserver/SimulatedCluster.actor.cpp
# fdbserver/TLogServer.actor.cpp
# fdbserver/masterserver.actor.cpp
|
2018-11-10 13:04:24 -08:00 |
A.J. Beamon
|
776b289bfe
|
Move AsyncFileBlobStore and related files to fdbclient.
|
2018-10-26 13:49:42 -07:00 |