This is an automated email from the ASF dual-hosted git repository. bankim pushed a commit to branch branch-1.15.x in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 64619147e7932518bb88b3f3f719d9c27cfdae68 Author: Andrew Wong <[email protected]> AuthorDate: Thu Jun 10 12:31:30 2021 -0700 docs: use PNG instead of SVG for image The SVG resulted in a failed RAT check for the release, so this patch updates to using a PNG, which is more common in our codebase anyway. It also moves it into the /images folder in /docs. Rendered version: https://github.com/andrwng/kudu/blob/txns_docs/docs/design-docs/transactions.adoc Change-Id: I6dff54eb4853e116b8da2ef2c604fe3de588bf5f Reviewed-on: http://gerrit.cloudera.org:8080/17578 Tested-by: Kudu Jenkins Reviewed-by: Bankim Bhavsar <[email protected]> (cherry picked from commit 38f037e6622a4b3916418ed01186ec97ef136087) Reviewed-on: http://gerrit.cloudera.org:8080/17579 Reviewed-by: Andrew Wong <[email protected]> --- docs/design-docs/design-docs_transactions.svg | 1 - docs/design-docs/transactions.adoc | 2 +- docs/images/design-docs_transactions.png | Bin 0 -> 132795 bytes 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/design-docs/design-docs_transactions.svg b/docs/design-docs/design-docs_transactions.svg deleted file mode 100644 index bae44b8..0000000 --- a/docs/design-docs/design-docs_transactions.svg +++ /dev/null @@ -1 +0,0 @@ -<svg version="1.1" viewBox="0.0 0.0 1280.0 960.0" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l1280.0 0l0 960.0l-1280.0 0l0 -960.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l1280.0 0l0 960.0l-1280.0 0z" fill-rule="evenodd"/><path fill="#cfe2f3" d="m151.68767 82.45932l135.40157 0l0 61.0708 [...] \ No newline at end of file diff --git a/docs/design-docs/transactions.adoc b/docs/design-docs/transactions.adoc index 3f65085..43706a6 100644 --- a/docs/design-docs/transactions.adoc +++ b/docs/design-docs/transactions.adoc @@ -63,7 +63,7 @@ the `TxnManager` to start, commit, abort, and heartbeat to the `TxnStatusManager Before delving into the details of each component, below is a depiction of the transactional write path. It is assumed that the transaction status table has the default replication factor (RF=3). -image::design-docs_transactions.svg[Commit path] +image::../images/design-docs_transactions.png[Commit path] . A Kudu client sends a request to the `TxnManager` to begin a transaction. . The `TxnManager` has cached the highest transaction ID seen by a transaction so far (though this diff --git a/docs/images/design-docs_transactions.png b/docs/images/design-docs_transactions.png new file mode 100644 index 0000000..6f6914e Binary files /dev/null and b/docs/images/design-docs_transactions.png differ
