Questions tagged [centralized]
85 questions
31
votes
1 answer
Python: custom logging across all modules
Task
I have a collection of scripts and I'd like them to produce unified logging messages with minimum alterations to modules doing logging the actual messages.
I've written a small module 'custom_logger' which I plan to call from the main…

Marcin Kaminski
- 473
- 1
- 4
- 11
25
votes
9 answers
What's the best practice for centralised logging?
My team has inherited support for 100+ applications. The applications don't have any kind of common architecture, so the ones that do logging usually do it with custom code to local files or a local database, and it's all unmanaged. We want to…

Stewart Johnson
- 14,281
- 7
- 61
- 70
22
votes
10 answers
Sell me distributed revision control
I know 1000s of similar topics floating around. I read at lest 5 threads here in SO But why am I still not convinced about DVCS?
I have only following questions (note that I am selfishly worried only about Java projects)
What is the advantage or…

ring bearer
- 20,383
- 7
- 59
- 72
8
votes
2 answers
Centralized cache server. (Ehcache or Hazelcast)
Currently we have 2 app severs, each has application level cache and has centralized database server. To keep both servers app cache in sync we have set up JMS broker in between. On cache clear on one server which sends message to JMS, since other…

Anand Immannavar
- 407
- 5
- 5
8
votes
2 answers
Largest weakly connected component in networkX
I have two questions.
In undirected graph, I want to find the largest connected component.
And I read the API documents of networkX, finding this function
nx.connected_component_subgraphs(). But I don't know how to use it, since its return value is…

Lion Kuo
- 239
- 4
- 13
7
votes
2 answers
Centralized vs decentralized mobile application portals
Lately I've been reading this article about mobile app development. On page 25 / page 28 they talk about centralized and decentralized mobile application portals. Unfortunately, the article is very dated.
Let's say I want to categorize the main…

sqe
- 1,656
- 4
- 21
- 38
5
votes
6 answers
Importing module from network
Is there a way to get python to read modules from a network?
We have many machines and it would be a too much effort to update each machine manually each time I change a module so I want python to get the modules from a location on the network.
Any…

Jared
- 81
- 1
- 2
- 6
4
votes
1 answer
Git with a central repository
I've just set up a repository on my server. I'd like to use it with a small group of developers. We want to have a central repository shared among us. We don't have experience with Git, but we want to learn. I have followed this instructions.
On…

ivantxo
- 719
- 5
- 18
- 36
4
votes
4 answers
Spring boot Config client : Refresh not working
Unable to refresh the Config files by using 'http://localhost:9001/refresh'.
If I restart the Client application, the updated config's are loading fine.
The following is the simple rest controller I am using to test the same.
The refresh is run…

Neeush Sreenivas
- 321
- 2
- 9
4
votes
1 answer
how to create xib subview at the center of tableview swift
I have tableview and I created the custom xib uiview as "detailview" for it. I want to show this detailview at the center of scrolled area when tapped to tableview cell. I can show this view but cannot centralized it. when I set value to frame…

atkafasi
- 43
- 4
3
votes
1 answer
How can I centralize proptypes which are not the same
I want to centralize proptypes that might contain different properties and be or not required. As an example:
Component A has:
roomData: PropTypes.shape({
roomId: PropTypes.number,
roomType: PropTypes.string,
}).isRequired,
while Component B…

WreewanMorhee
- 77
- 7
3
votes
1 answer
Is hyper ledger fabric considered as centralized blochain
Hyper ledger has some classic/old world mechanisms that brings up the question, is it really decentralized?
Having a REST server to communicate with the blockchain brings up the cloud model behavior.
Even though the hyper ledger is distributed,…

SexyMF
- 10,657
- 33
- 102
- 206
3
votes
1 answer
Difference between a distributed and a decentralized network
I thought I knew the difference but now I got myself a little bit confused and I'm not sure anymore. So I thought I could ask you.
Can a distributed network be centralized and also de-centralized? Or does a distributed network always means that…

Niklas Z.
- 31
- 3
3
votes
2 answers
How do I design a Notification/Push Service in a decentralized cluster?
It's not easy to design a notification/push service for a decentralized (peer-to-peer) cluster. For example, if I want Cassandra to push out a notification to Service A, if one table field has changed its value by Service B, that's not easy. This is…

Fan Zhang
- 59
- 7
3
votes
2 answers
Git Version numbering with a centralized workflow
We are using Git with a central server, and our code needs to include a version number in a file. The way this is currently done is like this:
A new developer does a "git clone"
In his local copy, he edits .git/hooks/pre-commit to call…

knipknap
- 5,934
- 7
- 39
- 43