Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Enable service discovery #150

Closed
wants to merge 14 commits into from
Closed

Enable service discovery #150

wants to merge 14 commits into from

Conversation

maltesander
Copy link
Member

@maltesander maltesander commented Mar 25, 2022

Description

  • added config builder for hdfs-site.xml and core-site.xml to reuse code for the rolegroup and discovery configmaps.
  • exposes a configmap with essential properties for clients to connect to this hdfs cluster
  • added service discovery docs

HBase PR thats works with this stackabletech/hbase-operator#153

closes #137
closes #121

Review Checklist

  • Code contains useful comments
  • (Integration-)Test cases added (or not applicable)
  • Documentation added (or not applicable)
  • Changelog updated (or not applicable)
  • Cargo.toml only contains references to git tags (not specific commits or branches)
  • Helm chart can be installed and deployed operator works (or not applicable)

Once the review is done, comment bors r+ (or bors merge) to merge. Further information

@maltesander maltesander added type/enhancement release-note Denotes a PR that will be considered when it comes time to generate release notes. labels Mar 25, 2022
@maltesander maltesander requested a review from a team March 25, 2022 14:03
@maltesander maltesander self-assigned this Mar 25, 2022
@maltesander maltesander marked this pull request as draft March 25, 2022 14:06
@maltesander maltesander marked this pull request as ready for review March 25, 2022 14:39
@maltesander maltesander marked this pull request as draft March 25, 2022 16:08
@maltesander
Copy link
Member Author

There is a little more work in terms of overrides to reflect that in the discovery.

@maltesander maltesander marked this pull request as ready for review March 28, 2022 11:10
@soenkeliebau
Copy link
Member

Are the changes to the product config intentional in here?

) -> Result<BTreeMap<String, Option<String>>, ConfigError> {
Ok(BTreeMap::new())
let mut config = BTreeMap::new();
if file == HDFS_SITE_XML {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems unrelated to the discovery?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes but required for the product config part.

@@ -72,6 +74,21 @@ pub async fn reconcile_hdfs(
let namenode_podrefs = hdfs.pod_refs(&HdfsRole::NameNode)?;
let journalnode_podrefs = hdfs.pod_refs(&HdfsRole::JournalNode)?;

let discovery_cm = build_discovery_configmap(&hdfs, &namenode_podrefs).map_err(|e| {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe a stupid question, but isn't this written too early? If we write the configmap here and roll out new nodes in a later step (for example when first building the cluster) wouldn't those be missing from the configmap?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The namenode_podrefs include all namenodes that will be created. Its calculated HdfsCluster::pod_refs().

let mut hdfs_site_xml = String::new();
let mut core_site_xml = String::new();

for (property_name_kind, config) in rolegroup_config {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes also seem unrelated to the discovery?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

well i replaced the hardcoded config part with that builder thing to reuse it in the discovery, so it kinda is :)

@@ -1,3 +1,6 @@
//mod discovery;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

leftover?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed

@maltesander
Copy link
Member Author

Are the changes to the product config intentional in here?

Yes i changed some hardcoded stuff here and there and had to remove some defaults and if it is required or not.

bors bot pushed a commit that referenced this pull request Apr 6, 2022
## Description

- adapted scripts for formatting namenodes
- code clean up

based on PR #150

closes #153 #147



Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
Co-authored-by: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com>
@maltesander maltesander closed this Apr 6, 2022
@maltesander maltesander deleted the enable_service_discovery branch April 6, 2022 13:37
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
release-note Denotes a PR that will be considered when it comes time to generate release notes.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Enable service discovery Document service discovery
2 participants