ttmc on master
Revised docs based on tips from… (compare)
Does anyone knows if it is possible to store more transactions in a block?
So far I understood that for each transaction generated, 1 block is created.|
Hyperledger Fabric claims to achieve a throughput of 3,500 transactions per second, which is clearly not achievable if in BigchainDB we create a block for each transaction.
Hey guys. I am researching BCDB possible application
came to this post
https://www.reddit.com/r/Bitcoin/comments/4j7wjf/bigchaindb_a_prime_example_of_blockchain_bullshit/
this post is very old (2016) maybe a lot of changed after that
can someone guide me how this was addressed in the end?
But BigchainDB's architecture is fundamentally flawed. All BigchainDB nodes, by design, connect to a single RethinkDB cluster. (RethinkDB is a distributed NoSQL database, kinda like MongoDB but better.) If something bad happens to that RethinkDB cluster, the whole blockchains goes down.
Hello; my team and I are currently looking to transition from locally stored flat files with our wallet and chain to utilizing bigchainDB; everything has been going fine thus far and I'm not sure if we will run into issues. However I was looking to see if there is anyone around here with experience utilizing the software specifically that we can bounce questions off real-time when the conversion takes place.
The "Amount" in our system is a little unique than most in it isn't currency, however all other aspects follow a typical blockchain deployment.
hi @ttmc i tried to execute the code (sent_creation_tx = bdb.transactions.send_commit(fulfilled_creation_tx) but a timeout error is appearing in the screeen TimeoutError Traceback (most recent call last)
<ipython-input-26-6495e0171e3f> in <module>
----> 1 sent_creation_tx = bdb.transactions.send_commit(fulfilled_creation_tx)
/opt/anaconda3/envs/blockchain/lib/python3.8/site-packages/bigchaindb_driver/driver.py in send_commit(self, transaction, headers)
368
369 """
--> 370 return self.transport.forward_request(
371 method='POST',
372 path=self.path,
/opt/anaconda3/envs/blockchain/lib/python3.8/site-packages/bigchaindb_driver/transport.py in forward_request(self, method, path, json, params, headers)
73 start = time()
74 try:
---> 75 response = connection.request(
76 method=method,
77 path=path,
/opt/anaconda3/envs/blockchain/lib/python3.8/site-packages/bigchaindb_driver/connection.py in request(self, method, path, json, params, headers, timeout, backoff_cap, **kwargs)
74
75 if timeout is not None and timeout < backoff_timedelta:
---> 76 raise TimeoutError
77
78 if backoff_timedelta > 0:
TimeoutError: T The bdb url i am using is bdb_root_url = ‘http://18.222.232.169’ ( where i have hosted the Bigchaindb server ) please help