Giter Club home page Giter Club logo

Comments (3)

CanMonster avatar CanMonster commented on July 21, 2024

Hi Po-temkin,

I have had a quick look and I can see what the issue is. I can tell you that the issue is not relate to the size of the INI but rather there looks to be a "Keyword" conflict between the content of your Indexes.ini file and the Ordered Dictionary the Get-IniContent function creates.

The Get-IniContent function creates an Order Dictionary which has two properties, Keys and Values. The function uses the [Section Name] as the Key and the values are the key = value pairs beneath each.

Ordered Dictionary
Key = "[Section]"
Values = An array of the "Key = value" pairs beneath each section

Your Index.txt file contains a Section named [keys], i.e.

[keys]
coldPath = $SPLUNK_DB$_index_name\colddb
coldToFrozenDir =
enableDataIntegrityControl = 0
enableTsidxReduction = 0
frozenTimePeriodInSecs = 2678400
homePath = $SPLUNK_DB$_index_name\db
maxTotalDataSizeMB = 512000
thawedPath = $SPLUNK_DB$_index_name\thaweddb
timePeriodInSecBeforeTsidxReduction =
tsidxReductionCheckPeriodInSec =
repFactor = auto

The [keys] section is conflicting with the "Keys" property of the Ordered Dictionary.

So when you use:

(Get-IniContent -FilePath 'C:\Users\admin\Desktop\indexes.txt').Keys

You are literally getting the Key and Values pairs for the Key "[keys]" as apposed to the complete list of Keys in the Ordered Dictionary.

There is nothing to fix per say. If you rename the [keys] section to something else, e.g. [keyz] and then use:

(Get-IniContent -FilePath 'C:\Users\admin\Desktop\indexes.txt').Keys

You will get a complete listing of the keys.

Hope this helps.

from psini.

CanMonster avatar CanMonster commented on July 21, 2024

Hi Po-temkin,

Some further research has shown that this is an known and open issue.

PowerShell/PowerShell#7758

The simplest solution to avoid the keyword conflict is to instead use:

(Get-IniContent -FilePath 'C:\Users\admin\Desktop\indexes.txt').PSBase.Keys

Hope this helps.

from psini.

Po-temkin avatar Po-temkin commented on July 21, 2024

Thank you for helpful advice, its works.

Hi Po-temkin,

Some further research has shown that this is an known and open issue.

PowerShell/PowerShell#7758

The simplest solution to avoid the keyword conflict is to instead use:

(Get-IniContent -FilePath 'C:\Users\admin\Desktop\indexes.txt').PSBase.Keys

Hope this helps.

Thank you for helpful advice, its works.

from psini.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.