AbsaOSS / AbsaOSS/enceladus

define variables in oozie templates with starting and ending char

Offen
#1,033 0 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
Menas priority: medium refactoring
Vorherrschende Sprache
Scala
Sterne
33
Forks
16
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

## Background
Currently, oozie variables for the template are just left bound but not right bound, eg. `$Variable` which then allows matching this even to `$Variable2`. If we make these left and right bound we lose this problem, eg. `${Variable}`

## Feature
Change oozie template variables from `$variable` to `${variable}`

## Proposed Solution [Optional]
1. Replace the strings in template
2. Use a simple function to which we provide a map of keys/values
```scala
def richFormat(string: String, replacement: Map[String, String]): String =
replacement.foldLeft(string)((res, entry) => res.replaceAll(s"\\{${entry._1}\\}", entry._2))
```

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.